diff --git a/codegen-v2/manifest/TWAES.yaml b/codegen-v2/manifest/TWAES.yaml index 24637e9155b..f8a5efd6175 100644 --- a/codegen-v2/manifest/TWAES.yaml +++ b/codegen-v2/manifest/TWAES.yaml @@ -6,9 +6,9 @@ structs: fields: - - unused - variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - AES encryption/decryption methods. functions: - name: TWAESEncryptCBC is_public: true @@ -17,33 +17,30 @@ functions: - name: key type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: iv type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: mode type: variant: enum value: TWAESPaddingMode - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Encrypts a block of Data using AES in Cipher Block Chaining (CBC) mode. + - \param key encryption key Data, must be 16, 24, or 32 bytes long. + - \param data Data to encrypt. + - \param iv initialization vector. + - \param mode padding mode. + - \return encrypted Data. - name: TWAESDecryptCBC is_public: true is_static: true @@ -51,33 +48,30 @@ functions: - name: key type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: iv type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: mode type: variant: enum value: TWAESPaddingMode - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Decrypts a block of data using AES in Cipher Block Chaining (CBC) mode. + - \param key decryption key Data, must be 16, 24, or 32 bytes long. + - \param data Data to decrypt. + - \param iv initialization vector Data. + - \param mode padding mode. + - \return decrypted Data. - name: TWAESEncryptCTR is_public: true is_static: true @@ -85,26 +79,24 @@ functions: - name: key type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: iv type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Encrypts a block of data using AES in Counter (CTR) mode. + - \param key encryption key Data, must be 16, 24, or 32 bytes long. + - \param data Data to encrypt. + - \param iv initialization vector Data. + - \return encrypted Data. - name: TWAESDecryptCTR is_public: true is_static: true @@ -112,23 +104,21 @@ functions: - name: key type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: iv type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Decrypts a block of data using AES in Counter (CTR) mode. + - \param key decryption key Data, must be 16, 24, or 32 bytes long. + - \param data Data to decrypt. + - \param iv initialization vector Data. + - \return decrypted Data. diff --git a/codegen-v2/manifest/TWAESPaddingMode.yaml b/codegen-v2/manifest/TWAESPaddingMode.yaml index 2776625e45f..f506649b24b 100644 --- a/codegen-v2/manifest/TWAESPaddingMode.yaml +++ b/codegen-v2/manifest/TWAESPaddingMode.yaml @@ -9,3 +9,5 @@ enums: value: 0 - name: pkcs7 value: 1 + comments: + - Padding mode used in AES encryption. diff --git a/codegen-v2/manifest/TWAccount.yaml b/codegen-v2/manifest/TWAccount.yaml index 4a2be534e60..80c4e8c1816 100644 --- a/codegen-v2/manifest/TWAccount.yaml +++ b/codegen-v2/manifest/TWAccount.yaml @@ -3,6 +3,8 @@ structs: - name: TWAccount is_public: true is_class: true + comments: + - Represents an Account in C++ with address, coin type and public key info, an item within a keystore. inits: - name: TWAccountCreate is_public: true @@ -11,85 +13,92 @@ inits: - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: publicKey type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: extendedPublicKey type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a new Account with an address, a coin type, derivation enum, derivationPath, publicKey, + - and extendedPublicKey. Must be deleted with TWAccountDelete after use. + - \param address The address of the Account. + - \param coin The coin type of the Account. + - \param derivation The derivation of the Account. + - \param derivationPath The derivation path of the Account. + - \param publicKey hex encoded public key. + - \param extendedPublicKey Base58 encoded extended public key. + - \return A new Account. deinits: - name: TWAccountDelete + comments: + - Deletes an account. + - \param account Account to delete. properties: - name: TWAccountAddress is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address of an account. + - \param account Account to get the address of. - name: TWAccountCoin is_public: true return_type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Return CoinType enum of an account. + - \param account Account to get the coin type of. - name: TWAccountDerivation is_public: true return_type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the derivation enum of an account. + - \param account Account to get the derivation enum of. - name: TWAccountDerivationPath is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns derivationPath of an account. + - \param account Account to get the derivation path of. - name: TWAccountPublicKey is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns hex encoded publicKey of an account. + - \param account Account to get the public key of. - name: TWAccountExtendedPublicKey is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns Base58 encoded extendedPublicKey of an account. + - \param account Account to get the extended public key of. diff --git a/codegen-v2/manifest/TWAnyAddress.yaml b/codegen-v2/manifest/TWAnyAddress.yaml index 52ce8860dd7..cb6b2403986 100644 --- a/codegen-v2/manifest/TWAnyAddress.yaml +++ b/codegen-v2/manifest/TWAnyAddress.yaml @@ -6,6 +6,8 @@ structs: - name: TWAnyAddress is_public: true is_class: true + comments: + - Represents an address in C++ for almost any blockchain. inits: - name: TWAnyAddressCreateWithString is_public: true @@ -14,16 +16,17 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an address from a string representation and a coin type. Must be deleted with TWAnyAddressDelete after use. + - \param string address to create. + - \param coin coin type of the address. + - \return TWAnyAddress pointer or nullptr if address and coin are invalid. - name: TWAnyAddressCreateBech32 is_public: true is_nullable: true @@ -31,22 +34,22 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: hrp type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an bech32 address from a string representation, a coin type and the given hrp. Must be deleted with TWAnyAddressDelete after use. + - \param string address to create. + - \param coin coin type of the address. + - \param hrp hrp of the address. + - \return TWAnyAddress pointer or nullptr if address and coin are invalid. - name: TWAnyAddressCreateSS58 is_public: true is_nullable: true @@ -54,22 +57,22 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: ss58Prefix type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an SS58 address from a string representation, a coin type and the given ss58Prefix. Must be deleted with TWAnyAddressDelete after use. + - \param string address to create. + - \param coin coin type of the address. + - \param ss58Prefix ss58Prefix of the SS58 address. + - \return TWAnyAddress pointer or nullptr if address and coin are invalid. - name: TWAnyAddressCreateWithPublicKey is_public: true is_nullable: false @@ -78,16 +81,17 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an address from a public key. + - \param publicKey derivates the address from the public key. + - \param coin coin type of the address. + - \return TWAnyAddress pointer or nullptr if public key is invalid. - name: TWAnyAddressCreateWithPublicKeyDerivation is_public: true is_nullable: false @@ -96,23 +100,23 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an address from a public key and derivation option. + - \param publicKey derivates the address from the public key. + - \param coin coin type of the address. + - \param derivation the custom derivation to use. + - \return TWAnyAddress pointer or nullptr if public key is invalid. - name: TWAnyAddressCreateBech32WithPublicKey is_public: true is_nullable: false @@ -121,22 +125,22 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: hrp type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an bech32 address from a public key and a given hrp. + - \param publicKey derivates the address from the public key. + - \param coin coin type of the address. + - \param hrp hrp of the address. + - \return TWAnyAddress pointer or nullptr if public key is invalid. - name: TWAnyAddressCreateSS58WithPublicKey is_public: true is_nullable: false @@ -145,22 +149,22 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: ss58Prefix type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an SS58 address from a public key and a given ss58Prefix. + - \param publicKey derivates the address from the public key. + - \param coin coin type of the address. + - \param ss58Prefix ss58Prefix of the SS58 address. + - \return TWAnyAddress pointer or nullptr if public key is invalid. - name: TWAnyAddressCreateWithPublicKeyFilecoinAddressType is_public: true is_nullable: false @@ -169,18 +173,22 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: filecoinAddressType type: variant: enum value: TWFilecoinAddressType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates a Filecoin address from a public key and a given address type. + - \param publicKey derivates the address from the public key. + - \param filecoinAddressType Filecoin address type. + - \return TWAnyAddress pointer or nullptr if public key is invalid. deinits: - name: TWAnyAddressDelete + comments: + - Deletes an address. + - \param address address to delete. functions: - name: TWAnyAddressEqual is_public: true @@ -190,21 +198,20 @@ functions: type: variant: struct value: TWAnyAddress - is_constant: false is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWAnyAddress - is_constant: false is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Compares two addresses for equality. + - \param lhs The first address to compare. + - \param rhs The second address to compare. + - \return bool indicating the addresses are equal. - name: TWAnyAddressIsValid is_public: true is_static: true @@ -212,21 +219,20 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Any address. + - \param string address to validate. + - \param coin coin type of the address. + - \return bool indicating if the address is valid. - name: TWAnyAddressIsValidBech32 is_public: true is_static: true @@ -234,27 +240,25 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: hrp type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Any address with the given hrp. + - \param string address to validate. + - \param coin coin type of the address. + - \param hrp explicit given hrp of the given address. + - \return bool indicating if the address is valid. - name: TWAnyAddressIsValidSS58 is_public: true is_static: true @@ -262,47 +266,48 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: ss58Prefix type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Any address with the given SS58 network prefix. + - \param string address to validate. + - \param coin coin type of the address. + - \param ss58Prefix ss58Prefix of the given address. + - \return bool indicating if the address is valid. properties: - name: TWAnyAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address string representation. + - \param address address to get the string representation of. - name: TWAnyAddressCoin is_public: true return_type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns coin type of address. + - \param address address to get the coin type of. - name: TWAnyAddressData is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns underlaying data (public key or key hash) + - \param address address to get the data of. diff --git a/codegen-v2/manifest/TWAptosProto.yaml b/codegen-v2/manifest/TWAptosProto.yaml index f32f51b7632..e429dcf2f6d 100644 --- a/codegen-v2/manifest/TWAptosProto.yaml +++ b/codegen-v2/manifest/TWAptosProto.yaml @@ -8,6 +8,10 @@ protos: - TW_Aptos_Proto_OfferNftMessage - TW_Aptos_Proto_CancelOfferNftMessage - TW_Aptos_Proto_ClaimNftMessage +- TW_Aptos_Proto_TortugaClaim +- TW_Aptos_Proto_TortugaStake +- TW_Aptos_Proto_TortugaUnstake +- TW_Aptos_Proto_LiquidStaking - TW_Aptos_Proto_NftMessage - TW_Aptos_Proto_SigningInput - TW_Aptos_Proto_TransactionAuthenticator diff --git a/codegen-v2/manifest/TWBase32.yaml b/codegen-v2/manifest/TWBase32.yaml index 3c1dd778457..c9665ae6a6b 100644 --- a/codegen-v2/manifest/TWBase32.yaml +++ b/codegen-v2/manifest/TWBase32.yaml @@ -3,6 +3,8 @@ structs: - name: TWBase32 is_public: true is_class: false + comments: + - Base32 encode / decode functions functions: - name: TWBase32DecodeWithAlphabet is_public: true @@ -25,6 +27,12 @@ functions: is_constant: true is_nullable: true is_pointer: true + comments: + - Decode a Base32 input with the given alphabet + - \param string Encoded base32 input to be decoded + - \param alphabet Decode with the given alphabet, if nullptr ALPHABET_RFC4648 is used by default + - \return The decoded data, can be null. + - \note ALPHABET_RFC4648 doesn't support padding in the default alphabet - name: TWBase32Decode is_public: true is_static: true @@ -40,6 +48,11 @@ functions: is_constant: true is_nullable: true is_pointer: true + comments: + - Decode a Base32 input with the default alphabet (ALPHABET_RFC4648) + - \param string Encoded input to be decoded + - \return The decoded data + - \note Call TWBase32DecodeWithAlphabet with nullptr. - name: TWBase32EncodeWithAlphabet is_public: true is_static: true @@ -61,6 +74,12 @@ functions: is_constant: true is_nullable: false is_pointer: true + comments: + - Encode an input to Base32 with the given alphabet + - \param data Data to be encoded (raw bytes) + - \param alphabet Encode with the given alphabet, if nullptr ALPHABET_RFC4648 is used by default + - \return The encoded data + - \note ALPHABET_RFC4648 doesn't support padding in the default alphabet - name: TWBase32Encode is_public: true is_static: true @@ -76,3 +95,8 @@ functions: is_constant: true is_nullable: false is_pointer: true + comments: + - Encode an input to Base32 with the default alphabet (ALPHABET_RFC4648) + - \param data Data to be encoded (raw bytes) + - \return The encoded data + - \note Call TWBase32EncodeWithAlphabet with nullptr. diff --git a/codegen-v2/manifest/TWBase58.yaml b/codegen-v2/manifest/TWBase58.yaml index 4806a101d67..8a0de3ee8b7 100644 --- a/codegen-v2/manifest/TWBase58.yaml +++ b/codegen-v2/manifest/TWBase58.yaml @@ -3,6 +3,8 @@ structs: - name: TWBase58 is_public: true is_class: false + comments: + - Base58 encode / decode functions functions: - name: TWBase58Encode is_public: true @@ -19,6 +21,10 @@ functions: is_constant: true is_nullable: false is_pointer: true + comments: + - Encodes data as a Base58 string, including the checksum. + - \param data The data to encode. + - \return the encoded Base58 string with checksum. - name: TWBase58EncodeNoCheck is_public: true is_static: true @@ -34,6 +40,10 @@ functions: is_constant: true is_nullable: false is_pointer: true + comments: + - Encodes data as a Base58 string, not including the checksum. + - \param data The data to encode. + - \return then encoded Base58 string without checksum. - name: TWBase58Decode is_public: true is_static: true @@ -49,6 +59,10 @@ functions: is_constant: true is_nullable: true is_pointer: true + comments: + - Decodes a Base58 string, checking the checksum. Returns null if the string is not a valid Base58 string. + - \param string The Base58 string to decode. + - \return the decoded data, empty if the string is not a valid Base58 string with checksum. - name: TWBase58DecodeNoCheck is_public: true is_static: true @@ -64,3 +78,7 @@ functions: is_constant: true is_nullable: true is_pointer: true + comments: + - Decodes a Base58 string, w/o checking the checksum. Returns null if the string is not a valid Base58 string. + - \param string The Base58 string to decode. + - \return the decoded data, empty if the string is not a valid Base58 string without checksum. diff --git a/codegen-v2/manifest/TWBase64.yaml b/codegen-v2/manifest/TWBase64.yaml index bcb60202257..dedfd298752 100644 --- a/codegen-v2/manifest/TWBase64.yaml +++ b/codegen-v2/manifest/TWBase64.yaml @@ -3,6 +3,8 @@ structs: - name: TWBase64 is_public: true is_class: false + comments: + - Base64 encode / decode functions functions: - name: TWBase64Decode is_public: true @@ -19,6 +21,10 @@ functions: is_constant: true is_nullable: true is_pointer: true + comment: + - Decode a Base64 input with the default alphabet (RFC4648 with '+', '/') + - \param string Encoded input to be decoded + - \return The decoded data, empty if decoding failed. - name: TWBase64DecodeUrl is_public: true is_static: true @@ -34,6 +40,10 @@ functions: is_constant: true is_nullable: true is_pointer: true + comments: + - Decode a Base64 input with the alphabet safe for URL-s and filenames (RFC4648 with '-', '_') + - \param string Encoded base64 input to be decoded + - \return The decoded data, empty if decoding failed. - name: TWBase64Encode is_public: true is_static: true @@ -49,6 +59,10 @@ functions: is_constant: true is_nullable: false is_pointer: true + comments: + - Encode an input to Base64 with the default alphabet (RFC4648 with '+', '/') + - \param data Data to be encoded (raw bytes) + - \return The encoded data - name: TWBase64EncodeUrl is_public: true is_static: true @@ -64,3 +78,7 @@ functions: is_constant: true is_nullable: false is_pointer: true + comments: + - Encode an input to Base64 with the alphabet safe for URL-s and filenames (RFC4648 with '-', '_') + - \param data Data to be encoded (raw bytes) + - \return The encoded data diff --git a/codegen-v2/manifest/TWBitcoinAddress.yaml b/codegen-v2/manifest/TWBitcoinAddress.yaml index 3e92416eba5..4925efa2e86 100644 --- a/codegen-v2/manifest/TWBitcoinAddress.yaml +++ b/codegen-v2/manifest/TWBitcoinAddress.yaml @@ -6,6 +6,8 @@ structs: - name: TWBitcoinAddress is_public: true is_class: true + comments: + - Represents a legacy Bitcoin address in C++. inits: - name: TWBitcoinAddressCreateWithString is_public: true @@ -14,9 +16,11 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Initializes an address from a Base58 sring. Must be deleted with TWBitcoinAddressDelete after use. + - \param string Base58 string to initialize the address from. + - \return TWBitcoinAddress pointer or nullptr if string is invalid. - name: TWBitcoinAddressCreateWithData is_public: true is_nullable: true @@ -24,9 +28,11 @@ inits: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Initializes an address from raw data. + - \param data Raw data to initialize the address from. Must be deleted with TWBitcoinAddressDelete after use. + - \return TWBitcoinAddress pointer or nullptr if data is invalid. - name: TWBitcoinAddressCreateWithPublicKey is_public: true is_nullable: true @@ -35,17 +41,21 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: prefix type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Initializes an address from a public key and a prefix byte. + - \param publicKey Public key to initialize the address from. + - \param prefix Prefix byte (p2pkh, p2sh, etc). + - \return TWBitcoinAddress pointer or nullptr if public key is invalid. deinits: - name: TWBitcoinAddressDelete + comments: + - Deletes a legacy Bitcoin address. + - \param address Address to delete. functions: - name: TWBitcoinAddressEqual is_public: true @@ -55,21 +65,20 @@ functions: type: variant: struct value: TWBitcoinAddress - is_constant: false is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWBitcoinAddress - is_constant: false is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Compares two addresses for equality. + - \param lhs The first address to compare. + - \param rhs The second address to compare. + - \return bool indicating the addresses are equal. - name: TWBitcoinAddressIsValid is_public: true is_static: true @@ -77,14 +86,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the data is a valid Bitcoin address. + - \param data data to validate. + - \return bool indicating if the address data is valid. - name: TWBitcoinAddressIsValidString is_public: true is_static: true @@ -92,33 +101,36 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Bitcoin address. + - \param string string to validate. + - \return bool indicating if the address string is valid. properties: - name: TWBitcoinAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address in Base58 string representation. + - \param address Address to get the string representation of. - name: TWBitcoinAddressPrefix is_public: true return_type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the address prefix. + - \param address Address to get the prefix of. - name: TWBitcoinAddressKeyhash is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the key hash data. + - \param address Address to get the keyhash data of. diff --git a/codegen-v2/manifest/TWBitcoinMessageSigner.yaml b/codegen-v2/manifest/TWBitcoinMessageSigner.yaml index e97a4209b14..3578e00d515 100644 --- a/codegen-v2/manifest/TWBitcoinMessageSigner.yaml +++ b/codegen-v2/manifest/TWBitcoinMessageSigner.yaml @@ -3,6 +3,11 @@ structs: - name: TWBitcoinMessageSigner is_public: true is_class: false + comments: + - Bitcoin message signing and verification. + - Bitcoin Core and some other wallets support a message signing & verification format, to create a proof (a signature) + - that someone has access to the private keys of a specific address. + - This feature currently works on old legacy addresses only. functions: - name: TWBitcoinMessageSignerSignMessage is_public: true @@ -12,26 +17,25 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message. + - '\param privateKey: the private key used for signing' + - '\param address: the address that matches the privateKey, must be a legacy address (P2PKH)' + - '\param message: A custom message which is input to the signing.' + - \note Address is derived assuming compressed public key format. + - \returns the signature, Base64-encoded. On invalid input empty string is returned. Returned object needs to be deleteed after use. - name: TWBitcoinMessageSignerVerifyMessage is_public: true is_static: true @@ -39,23 +43,21 @@ functions: - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: signature type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify signature for a message. + - '\param address: address to use, only legacy is supported' + - '\param message: the message signed (without prefix)' + - '\param signature: in Base64-encoded form.' + - \returns false on any invalid input (does not throw). diff --git a/codegen-v2/manifest/TWBitcoinScript.yaml b/codegen-v2/manifest/TWBitcoinScript.yaml index 1a06577cd1a..3c15a81de4c 100644 --- a/codegen-v2/manifest/TWBitcoinScript.yaml +++ b/codegen-v2/manifest/TWBitcoinScript.yaml @@ -3,10 +3,15 @@ structs: - name: TWBitcoinScript is_public: true is_class: true + comments: + - Bitcoin script manipulating functions inits: - name: TWBitcoinScriptCreate is_public: true is_nullable: false + comments: + - Creates an empty script. + - \return A pointer to the script - name: TWBitcoinScriptCreateWithData is_public: true is_nullable: false @@ -14,9 +19,30 @@ inits: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a script from a raw data representation. + - \param data The data buffer + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the script +- name: TWBitcoinScriptCreateWithBytes + is_public: false + is_nullable: false + params: + - name: bytes + type: + variant: u_int8_t + is_nullable: false + - name: size + type: + variant: size_t + is_nullable: false + comments: + - Creates a script from a raw bytes and size. + - \param bytes The buffer + - \param size The size of the buffer + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the script - name: TWBitcoinScriptCreateCopy is_public: true is_nullable: false @@ -25,11 +51,17 @@ inits: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a script by copying an existing script. + - \param script Non-null pointer to a script + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the script deinits: - name: TWBitcoinScriptDelete + comments: + - Delete/Deallocate a given script. + - \param script Non-null pointer to a script functions: - name: TWBitcoinScriptEqual is_public: true @@ -39,21 +71,20 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether 2 scripts have the same content + - \param lhs Non-null pointer to the first script + - \param rhs Non-null pointer to the second script + - \return true if both script have the same content - name: TWBitcoinScriptMatchPayToPubkey is_public: true is_static: false @@ -62,14 +93,14 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Matches the script to a pay-to-public-key (P2PK) script. + - \param script Non-null pointer to a script + - \return The public key. - name: TWBitcoinScriptMatchPayToPubkeyHash is_public: true is_static: false @@ -78,14 +109,14 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Matches the script to a pay-to-public-key-hash (P2PKH). + - \param script Non-null pointer to a script + - \return the key hash. - name: TWBitcoinScriptMatchPayToScriptHash is_public: true is_static: false @@ -94,14 +125,14 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Matches the script to a pay-to-script-hash (P2SH). + - \param script Non-null pointer to a script + - \return the script hash. - name: TWBitcoinScriptMatchPayToWitnessPublicKeyHash is_public: true is_static: false @@ -110,14 +141,14 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Matches the script to a pay-to-witness-public-key-hash (P2WPKH). + - \param script Non-null pointer to a script + - \return the key hash. - name: TWBitcoinScriptMatchPayToWitnessScriptHash is_public: true is_static: false @@ -126,14 +157,14 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Matches the script to a pay-to-witness-script-hash (P2WSH). + - \param script Non-null pointer to a script + - \return the script hash, a SHA256 of the witness script.. - name: TWBitcoinScriptEncode is_public: true is_static: false @@ -142,14 +173,14 @@ functions: type: variant: struct value: TWBitcoinScript - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encodes the script. + - \param script Non-null pointer to a script + - \return The encoded script - name: TWBitcoinScriptBuildPayToPublicKey is_public: true is_static: true @@ -157,15 +188,16 @@ functions: - name: pubkey type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWBitcoinScript - is_constant: false is_nullable: false - is_pointer: true + comments: + - Builds a standard 'pay to public key' script. + - \param pubkey Non-null pointer to a pubkey + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the built script - name: TWBitcoinScriptBuildPayToPublicKeyHash is_public: true is_static: true @@ -173,15 +205,16 @@ functions: - name: hash type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWBitcoinScript - is_constant: false is_nullable: false - is_pointer: true + comments: + - Builds a standard 'pay to public key hash' script. + - \param hash Non-null pointer to a PublicKey hash + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the built script - name: TWBitcoinScriptBuildPayToScriptHash is_public: true is_static: true @@ -189,15 +222,16 @@ functions: - name: scriptHash type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWBitcoinScript - is_constant: false is_nullable: false - is_pointer: true + comments: + - Builds a standard 'pay to script hash' script. + - \param scriptHash Non-null pointer to a script hash + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the built script - name: TWBitcoinScriptBuildPayToWitnessPubkeyHash is_public: true is_static: true @@ -205,15 +239,16 @@ functions: - name: hash type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWBitcoinScript - is_constant: false is_nullable: false - is_pointer: true + comments: + - Builds a pay-to-witness-public-key-hash (P2WPKH) script.. + - \param hash Non-null pointer to a witness public key hash + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the built script - name: TWBitcoinScriptBuildPayToWitnessScriptHash is_public: true is_static: true @@ -221,15 +256,16 @@ functions: - name: scriptHash type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWBitcoinScript - is_constant: false is_nullable: false - is_pointer: true + comments: + - Builds a pay-to-witness-script-hash (P2WSH) script. + - \param scriptHash Non-null pointer to a script hash + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the built script - name: TWBitcoinScriptLockScriptForAddress is_public: true is_static: true @@ -237,22 +273,49 @@ functions: - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWBitcoinScript - is_constant: false is_nullable: false - is_pointer: true + comments: + - Builds a appropriate lock script for the given address.. + - \param address Non-null pointer to an address + - \param coin coin type + - \note Must be deleted with \TWBitcoinScriptDelete + - \return A pointer to the built script +- name: TWBitcoinScriptLockScriptForAddressReplay + is_public: true + is_static: true + params: + - name: address + type: + variant: string + is_nullable: false + - name: coin + type: + variant: enum + value: TWCoinType + is_nullable: false + - name: blockHash + type: + variant: data + is_nullable: false + - name: blockHeight + type: + variant: int64_t + is_nullable: false + return_type: + variant: struct + value: TWBitcoinScript + is_nullable: false + comments: + - Builds a appropriate lock script for the given address with replay. - name: TWBitcoinScriptHashTypeForCoin is_public: true is_static: true @@ -261,61 +324,75 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Return the default HashType for the given coin, such as TWBitcoinSigHashTypeAll. + - \param coinType coin type + - \return default HashType for the given coin properties: - name: TWBitcoinScriptSize is_public: true return_type: variant: size_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Get size of a script + - \param script Non-null pointer to a script + - \return size of the script - name: TWBitcoinScriptData is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Get data of a script + - \param script Non-null pointer to a script + - \return data of the given script - name: TWBitcoinScriptScriptHash is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Return script hash of a script + - \param script Non-null pointer to a script + - \return script hash of the given script - name: TWBitcoinScriptIsPayToScriptHash is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether this is a pay-to-script-hash (P2SH) script. + - \param script Non-null pointer to a script + - \return true if this is a pay-to-script-hash (P2SH) script, false otherwise - name: TWBitcoinScriptIsPayToWitnessScriptHash is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether this is a pay-to-witness-script-hash (P2WSH) script. + - \param script Non-null pointer to a script + - \return true if this is a pay-to-witness-script-hash (P2WSH) script, false otherwise - name: TWBitcoinScriptIsPayToWitnessPublicKeyHash is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether this is a pay-to-witness-public-key-hash (P2WPKH) script. + - \param script Non-null pointer to a script + - \return true if this is a pay-to-witness-public-key-hash (P2WPKH) script, false otherwise - name: TWBitcoinScriptIsWitnessProgram is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether this is a witness program script. + - \param script Non-null pointer to a script + - \return true if this is a witness program script, false otherwise diff --git a/codegen-v2/manifest/TWBitcoinSigHashType.yaml b/codegen-v2/manifest/TWBitcoinSigHashType.yaml index 27e2c5f339f..8c042d075f1 100644 --- a/codegen-v2/manifest/TWBitcoinSigHashType.yaml +++ b/codegen-v2/manifest/TWBitcoinSigHashType.yaml @@ -17,6 +17,8 @@ enums: value: 0x4f40 - name: anyoneCanPay value: 0x80 + comments: + - Bitcoin SIGHASH type. functions: - name: TWBitcoinSigHashTypeIsSingle is_public: true @@ -26,14 +28,14 @@ functions: type: variant: enum value: TWBitcoinSigHashType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the given sig hash is single + - \param type sig hash type + - \return true if the sigh hash type is single, false otherwise - name: TWBitcoinSigHashTypeIsNone is_public: true is_static: false @@ -42,11 +44,11 @@ functions: type: variant: enum value: TWBitcoinSigHashType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the given sig hash is none + - \param type sig hash type + - \return true if the sigh hash type is none, false otherwise diff --git a/codegen-v2/manifest/TWBlockchain.yaml b/codegen-v2/manifest/TWBlockchain.yaml index 545fafee77b..4c9353df9ec 100644 --- a/codegen-v2/manifest/TWBlockchain.yaml +++ b/codegen-v2/manifest/TWBlockchain.yaml @@ -59,6 +59,8 @@ enums: value: 26 - name: algorand value: 27 + - name: iost + value: 28 - name: polkadot value: 29 - name: cardano @@ -83,15 +85,25 @@ enums: value: 39 - name: kusama value: 40 - - name: nervos + - name: zen value: 41 - - name: everscale + - name: bitcoinDiamond value: 42 - - name: aptos + - name: verge value: 43 - - name: hedera + - name: nervos value: 44 - - name: theOpenNetwork + - name: everscale value: 45 - - name: sui + - name: aptos value: 46 + - name: nebl + value: 47 + - name: hedera + value: 48 + - name: theOpenNetwork + value: 49 + - name: sui + value: 50 + comments: + - Blockchain enum type diff --git a/codegen-v2/manifest/TWCardano.yaml b/codegen-v2/manifest/TWCardano.yaml index d6489ffa40e..a99e796d502 100644 --- a/codegen-v2/manifest/TWCardano.yaml +++ b/codegen-v2/manifest/TWCardano.yaml @@ -3,6 +3,8 @@ structs: - name: TWCardano is_public: true is_class: false + comments: + - Cardano helper functions functions: - name: TWCardanoMinAdaAmount is_public: true @@ -11,14 +13,16 @@ functions: - name: tokenBundle type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: u_int64_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Calculates the minimum ADA amount needed for a UTXO. + - \deprecated consider using `TWCardanoOutputMinAdaAmount` instead. + - \see reference https://docs.cardano.org/native-tokens/minimum-ada-value-requirement + - \param tokenBundle serialized data of TW.Cardano.Proto.TokenBundle. + - \return the minimum ADA amount. - name: TWCardanoOutputMinAdaAmount is_public: true is_static: true @@ -26,26 +30,25 @@ functions: - name: toAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: tokenBundle type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: coinsPerUtxoByte type: variant: u_int64_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: u_int64_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Calculates the minimum ADA amount needed for an output. + - \see reference https://docs.cardano.org/native-tokens/minimum-ada-value-requirement + - \param toAddress valid destination address, as string. + - \param tokenBundle serialized data of TW.Cardano.Proto.TokenBundle. + - \param coinsPerUtxoByte cost per one byte of a serialized UTXO. + - \return the minimum ADA amount. - name: TWCardanoGetStakingAddress is_public: true is_static: true @@ -53,11 +56,12 @@ functions: - name: baseAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Return the staking address associated to (contained in) this address. Must be a Base address. + - Empty string is returned on error. Result must be freed. + - \param baseAddress A valid base address, as string. + - \return the associated staking (reward) address, as string, or empty string on error. diff --git a/codegen-v2/manifest/TWCoinType.yaml b/codegen-v2/manifest/TWCoinType.yaml index 5489b74cf98..d8884562824 100644 --- a/codegen-v2/manifest/TWCoinType.yaml +++ b/codegen-v2/manifest/TWCoinType.yaml @@ -3,9 +3,13 @@ structs: - name: TWPrivateKey is_public: false is_class: false + comments: + - Represents a private key. - name: TWPublicKey is_public: false is_class: false + comments: + - Represents a public key. enums: - name: TWCoinType is_public: true @@ -30,6 +34,8 @@ enums: value: 1815 - name: cosmos value: 118 + - name: pivx + value: 119 - name: dash value: 5 - name: decred @@ -138,6 +144,8 @@ enums: value: 10000714 - name: smartChain value: 20000714 + - name: tBinance + value: 30000714 - name: oasis value: 474 - name: polygon @@ -170,14 +178,24 @@ enums: value: 10000118 - name: ecash value: 899 + - name: iost + value: 291 - name: cronosChain value: 10000025 - name: smartBitcoinCash value: 10000145 - name: kuCoinCommunityChain value: 10000321 + - name: bitcoinDiamond + value: 999 - name: boba value: 10000288 + - name: syscoin + value: 57 + - name: verge + value: 77 + - name: zen + value: 121 - name: metis value: 1001088 - name: aurora @@ -198,12 +216,18 @@ enums: value: 18000 - name: okxchain value: 996 + - name: stratis + value: 105105 + - name: komodo + value: 141 - name: nervos value: 309 - name: everscale value: 396 - name: aptos value: 637 + - name: nebl + value: 146 - name: hedera value: 3030 - name: secret @@ -256,6 +280,9 @@ enums: value: 17000118 - name: noble value: 18000118 + comments: + - Coin type for Level 2 of BIP44. + - \see https://github.com/satoshilabs/slips/blob/master/slip-0044.md functions: - name: TWCoinTypeValidate is_public: true @@ -265,20 +292,19 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Validates an address string. + - \param coin A coin type + - \param address A public address + - \return true if the address is a valid public address of the given coin, false otherwise. - name: TWCoinTypeDerivationPath is_public: true is_static: false @@ -287,14 +313,14 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the default derivation path for a particular coin. + - \param coin A coin type + - \return the default derivation path for the given coin type. - name: TWCoinTypeDerivationPathWithDerivation is_public: true is_static: false @@ -303,21 +329,20 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the derivation path for a particular coin with the explicit given derivation. + - \param coin A coin type + - \param derivation A derivation type + - \return the derivation path for the given coin with the explicit given derivation - name: TWCoinTypeDeriveAddress is_public: true is_static: false @@ -326,21 +351,20 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: privateKey type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Derives the address for a particular coin from the private key. + - \param coin A coin type + - \param privateKey A valid private key + - \return Derived address for the given coin from the private key. - name: TWCoinTypeDeriveAddressFromPublicKey is_public: true is_static: false @@ -349,117 +373,167 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: publicKey type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Derives the address for a particular coin from the public key. + - \param coin A coin type + - \param publicKey A valid public key + - \return Derived address for the given coin from the public key. +- name: TWCoinTypeDeriveAddressFromPublicKeyAndDerivation + is_public: true + is_static: false + params: + - name: coin + type: + variant: enum + value: TWCoinType + is_nullable: false + - name: publicKey + type: + variant: struct + value: TWPublicKey + is_nullable: false + - name: derivation + type: + variant: enum + value: TWDerivation + is_nullable: false + return_type: + variant: string + is_nullable: false + comments: + - Derives the address for a particular coin from the public key with the derivation. properties: - name: TWCoinTypeBlockchain is_public: true return_type: variant: enum value: TWBlockchain - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the blockchain for a coin type. + - \param coin A coin type + - \return blockchain associated to the given coin type - name: TWCoinTypePurpose is_public: true return_type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the purpose for a coin type. + - \param coin A coin type + - \return purpose associated to the given coin type - name: TWCoinTypeCurve is_public: true return_type: variant: enum value: TWCurve - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the curve that should be used for a coin type. + - \param coin A coin type + - \return curve that should be used for the given coin type - name: TWCoinTypeXpubVersion is_public: true return_type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the xpub HD version that should be used for a coin type. + - \param coin A coin type + - \return xpub HD version that should be used for the given coin type - name: TWCoinTypeXprvVersion is_public: true return_type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the xprv HD version that should be used for a coin type. + - \param coin A coin type + - \return the xprv HD version that should be used for the given coin type. - name: TWCoinTypeHRP is_public: true return_type: variant: enum value: TWHRP - is_constant: false is_nullable: false - is_pointer: false + comments: + - HRP for this coin type + - \param coin A coin type + - \return HRP of the given coin type. - name: TWCoinTypeP2pkhPrefix is_public: true return_type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - P2PKH prefix for this coin type + - \param coin A coin type + - \return P2PKH prefix for the given coin type - name: TWCoinTypeP2shPrefix is_public: true return_type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - P2SH prefix for this coin type + - \param coin A coin type + - \return P2SH prefix for the given coin type - name: TWCoinTypeStaticPrefix is_public: true return_type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Static prefix for this coin type + - \param coin A coin type + - \return Static prefix for the given coin type - name: TWCoinTypeChainId is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - ChainID for this coin type. + - \param coin A coin type + - \return ChainID for the given coin type. + - \note Caller must free returned object. - name: TWCoinTypeSlip44Id is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - SLIP-0044 id for this coin type + - \param coin A coin type + - \return SLIP-0044 id for the given coin type - name: TWCoinTypeSS58Prefix is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - SS58Prefix for this coin type + - \param coin A coin type + - \return SS58Prefix for the given coin type - name: TWCoinTypePublicKeyType is_public: true return_type: variant: enum value: TWPublicKeyType - is_constant: false is_nullable: false - is_pointer: false + comments: + - public key type for this coin type + - \param coin A coin type + - \return public key type for the given coin type diff --git a/codegen-v2/manifest/TWCoinTypeConfiguration.yaml b/codegen-v2/manifest/TWCoinTypeConfiguration.yaml index aafa2b803cd..a8aa7accb8a 100644 --- a/codegen-v2/manifest/TWCoinTypeConfiguration.yaml +++ b/codegen-v2/manifest/TWCoinTypeConfiguration.yaml @@ -6,9 +6,9 @@ structs: fields: - - unused - variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - CoinTypeConfiguration functions functions: - name: TWCoinTypeConfigurationGetSymbol is_public: true @@ -18,14 +18,15 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns stock symbol of coin + - \param type A coin type + - \return A non-null TWString stock symbol of coin + - \note Caller must free returned object - name: TWCoinTypeConfigurationGetDecimals is_public: true is_static: true @@ -34,14 +35,14 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns max count decimal places for minimal coin unit + - \param type A coin type + - \return Returns max count decimal places for minimal coin unit - name: TWCoinTypeConfigurationGetTransactionURL is_public: true is_static: true @@ -50,20 +51,19 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: transactionID type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns transaction url in blockchain explorer + - \param type A coin type + - \param transactionID A transaction identifier + - \return Returns a non-null TWString transaction url in blockchain explorer - name: TWCoinTypeConfigurationGetAccountURL is_public: true is_static: true @@ -72,20 +72,19 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: accountID type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns account url in blockchain explorer + - \param type A coin type + - \param accountID an Account identifier + - \return Returns a non-null TWString account url in blockchain explorer - name: TWCoinTypeConfigurationGetID is_public: true is_static: true @@ -94,14 +93,14 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns full name of coin in lower case + - \param type A coin type + - \return Returns a non-null TWString, full name of coin in lower case - name: TWCoinTypeConfigurationGetName is_public: true is_static: true @@ -110,11 +109,11 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns full name of coin + - \param type A coin type + - \return Returns a non-null TWString, full name of coin diff --git a/codegen-v2/manifest/TWCurve.yaml b/codegen-v2/manifest/TWCurve.yaml index 01f14d2dfd5..102f798a188 100644 --- a/codegen-v2/manifest/TWCurve.yaml +++ b/codegen-v2/manifest/TWCurve.yaml @@ -26,3 +26,5 @@ enums: - name: starkex value: 6 as_string: starkex + comments: + - Elliptic cruves diff --git a/codegen-v2/manifest/TWDataVector.yaml b/codegen-v2/manifest/TWDataVector.yaml index f9011148096..d6b2cd51407 100644 --- a/codegen-v2/manifest/TWDataVector.yaml +++ b/codegen-v2/manifest/TWDataVector.yaml @@ -3,10 +3,16 @@ structs: - name: TWDataVector is_public: true is_class: true + comments: + - A vector of TWData byte arrays inits: - name: TWDataVectorCreate is_public: true is_nullable: false + comments: + - Creates a Vector of Data. + - \note Must be deleted with \TWDataVectorDelete + - \return a non-null Vector of Data. - name: TWDataVectorCreateWithData is_public: true is_nullable: false @@ -17,8 +23,15 @@ inits: is_constant: true is_nullable: false is_pointer: true + comments: + - Creates a Vector of Data with the given element + - \param data A non-null valid block of data + - \return A Vector of data with a single given element deinits: - name: TWDataVectorDelete + comments: + - Delete/Deallocate a Vector of Data + - \param dataVector A non-null Vector of data functions: - name: TWDataVectorAdd is_public: true @@ -42,6 +55,11 @@ functions: is_constant: false is_nullable: false is_pointer: false + comments: + - Add an element to a Vector of Data. Element is cloned + - \param dataVector A non-null Vector of data + - \param data A non-null valid block of data + - \note data input parameter must be deleted on its own - name: TWDataVectorGet is_public: true is_static: false @@ -64,6 +82,12 @@ functions: is_constant: true is_nullable: true is_pointer: true + comments: + - Retrieve the n-th element. + - \param dataVector A non-null Vector of data + - \param index index element of the vector to be retrieved, need to be < TWDataVectorSize + - \note Returned element must be freed with \TWDataDelete + - \return A non-null block of data properties: - name: TWDataVectorSize is_public: true @@ -72,3 +96,7 @@ properties: is_constant: false is_nullable: false is_pointer: false + comments: + - Retrieve the number of elements + - \param dataVector A non-null Vector of data + - \return the size of the given vector. diff --git a/codegen-v2/manifest/TWDerivation.yaml b/codegen-v2/manifest/TWDerivation.yaml index c2143b80431..0d1cc1bc87a 100644 --- a/codegen-v2/manifest/TWDerivation.yaml +++ b/codegen-v2/manifest/TWDerivation.yaml @@ -19,3 +19,5 @@ enums: value: 5 - name: solanaSolana value: 6 + comments: + - Non-default coin address derivation names (default, unnamed derivations are not included). diff --git a/codegen-v2/manifest/TWDerivationPath.yaml b/codegen-v2/manifest/TWDerivationPath.yaml index 8e550ded65e..4702985ea61 100644 --- a/codegen-v2/manifest/TWDerivationPath.yaml +++ b/codegen-v2/manifest/TWDerivationPath.yaml @@ -3,6 +3,8 @@ structs: - name: TWDerivationPath is_public: true is_class: true + comments: + - Represents a BIP44 DerivationPath in C++. inits: - name: TWDerivationPathCreate is_public: true @@ -12,33 +14,32 @@ inits: type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: account type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: change type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: address type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates a new DerivationPath with a purpose, coin, account, change and address. + - Must be deleted with TWDerivationPathDelete after use. + - \param purpose The purpose of the Path. + - \param coin The coin type of the Path. + - \param account The derivation of the Path. + - \param change The derivation path of the Path. + - \param address hex encoded public key. + - \return A new DerivationPath. - name: TWDerivationPathCreateWithString is_public: true is_nullable: true @@ -46,11 +47,16 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a new DerivationPath with a string + - \param string The string of the Path. + - \return A new DerivationPath or null if string is invalid. deinits: - name: TWDerivationPathDelete + comments: + - Deletes a DerivationPath. + - \param path DerivationPath to delete. functions: - name: TWDerivationPathIndexAt is_public: true @@ -60,21 +66,20 @@ functions: type: variant: struct value: TWDerivationPath - is_constant: false is_nullable: false - is_pointer: true - name: index type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWDerivationPathIndex - is_constant: false is_nullable: true - is_pointer: true + comments: + - Returns the index component of a DerivationPath. + - \param path DerivationPath to get the index of. + - \param index The index component of the DerivationPath. + - \return DerivationPathIndex or null if index is invalid. - name: TWDerivationPathIndicesCount is_public: true is_static: false @@ -83,55 +88,67 @@ functions: type: variant: struct value: TWDerivationPath - is_constant: false is_nullable: false - is_pointer: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the indices count of a DerivationPath. + - \param path DerivationPath to get the indices count of. + - \return The indices count of the DerivationPath. properties: - name: TWDerivationPathPurpose is_public: true return_type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the purpose enum of a DerivationPath. + - \param path DerivationPath to get the purpose of. + - \return DerivationPathPurpose. - name: TWDerivationPathCoin is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the coin value of a derivation path. + - \param path DerivationPath to get the coin of. + - \return The coin part of the DerivationPath. - name: TWDerivationPathAccount is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the account value of a derivation path. + - \param path DerivationPath to get the account of. + - \return the account part of a derivation path. - name: TWDerivationPathChange is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the change value of a derivation path. + - \param path DerivationPath to get the change of. + - \return The change part of a derivation path. - name: TWDerivationPathAddress is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the address value of a derivation path. + - \param path DerivationPath to get the address of. + - \return The address part of the derivation path. - name: TWDerivationPathDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the string description of a derivation path. + - \param path DerivationPath to get the address of. + - \return The string description of the derivation path. diff --git a/codegen-v2/manifest/TWDerivationPathIndex.yaml b/codegen-v2/manifest/TWDerivationPathIndex.yaml index 8106efe6dfe..183ec4423e9 100644 --- a/codegen-v2/manifest/TWDerivationPathIndex.yaml +++ b/codegen-v2/manifest/TWDerivationPathIndex.yaml @@ -3,6 +3,8 @@ structs: - name: TWDerivationPathIndex is_public: true is_class: true + comments: + - Represents a derivation path index in C++ with value and hardened flag. inits: - name: TWDerivationPathIndexCreate is_public: true @@ -11,36 +13,46 @@ inits: - name: value type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: hardened type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates a new Index with a value and hardened flag. + - Must be deleted with TWDerivationPathIndexDelete after use. + - \param value Index value + - \param hardened Indicates if the Index is hardened. + - \return A new Index. deinits: - name: TWDerivationPathIndexDelete + comments: + - Deletes an Index. + - \param index Index to delete. properties: - name: TWDerivationPathIndexValue is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns numeric value of an Index. + - \param index Index to get the numeric value of. - name: TWDerivationPathIndexHardened is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns hardened flag of an Index. + - \param index Index to get hardened flag. + - \return true if hardened, false otherwise. - name: TWDerivationPathIndexDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the string description of a derivation path index. + - \param path Index to get the address of. + - \return The string description of the derivation path index. diff --git a/codegen-v2/manifest/TWEthereum.yaml b/codegen-v2/manifest/TWEthereum.yaml index 1d4aa9b9d97..cc029a21b40 100644 --- a/codegen-v2/manifest/TWEthereum.yaml +++ b/codegen-v2/manifest/TWEthereum.yaml @@ -11,32 +11,30 @@ functions: - name: ethAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: layer type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: application type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: index type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Generate a layer 2 eip2645 derivation path from eth address, layer, application and given index. + - \param wallet non-null TWHDWallet + - \param ethAddress non-null Ethereum address + - \param layer non-null layer 2 name (E.G starkex) + - \param application non-null layer 2 application (E.G immutablex) + - \param index non-null layer 2 index (E.G 1) + - \return a valid eip2645 layer 2 derivation path as a string - name: TWEthereumEip4337GetDeploymentAddress is_public: true is_static: true @@ -44,23 +42,21 @@ functions: - name: factoryAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: logicAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: ownerAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Generates a deployment address for a ERC-4337 compatible smart contract wallet + - \param factoryAddress non-null address of the account factory + - \param logicAddress non-null address of the wallet's logic smart contract + - \param ownerAddress non-null address of the signing key that controls the smart contract wallet + - \return Ethereum resulting address diff --git a/codegen-v2/manifest/TWEthereumAbi.yaml b/codegen-v2/manifest/TWEthereumAbi.yaml index fda88c4c4c1..7218a1f68de 100644 --- a/codegen-v2/manifest/TWEthereumAbi.yaml +++ b/codegen-v2/manifest/TWEthereumAbi.yaml @@ -3,6 +3,8 @@ structs: - name: TWEthereumAbiFunction is_public: false is_class: false + comments: + - Wrapper class for Ethereum ABI encoding & decoding. - name: TWEthereumAbi is_public: true is_class: false @@ -15,14 +17,14 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode function to Eth ABI binary + - \param fn Non-null Eth abi function + - \return Non-null encoded block of data - name: TWEthereumAbiDecodeOutput is_public: true is_static: true @@ -31,20 +33,19 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: encoded type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Decode function output from Eth ABI binary, fill output parameters + - \param[in] fn Non-null Eth abi function + - \param[out] encoded Non-null block of data + - \return true if encoded have been filled correctly, false otherwise - name: TWEthereumAbiDecodeCall is_public: true is_static: true @@ -52,20 +53,19 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: abi type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: true - is_pointer: true + comments: + - Decode function call data to human readable json format, according to input abi json + - \param data Non-null block of data + - \param abi Non-null string + - \return Non-null json string function call data - name: TWEthereumAbiEncodeTyped is_public: true is_static: true @@ -73,11 +73,45 @@ functions: - name: messageJson type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Compute the hash of a struct, used for signing, according to EIP712 ("v4"). + - 'Input is a Json object (as string), with following fields:' + - '- types: map of used struct types (see makeTypes())' + - '- primaryType: the type of the message (string)' + - '- domain: EIP712 domain specifier values' + - '- message: the message (object).' + - Throws on error. + - 'Example input:' + - R"({ + - '"types": {' + - '"EIP712Domain": [' + - '{"name": "name", "type": "string"},' + - '{"name": "version", "type": "string"},' + - '{"name": "chainId", "type": "uint256"},' + - '{"name": "verifyingContract", "type": "address"}' + - '],' + - '"Person": [' + - '{"name": "name", "type": "string"},' + - '{"name": "wallet", "type": "address"}' + - ']' + - '},' + - '"primaryType": "Person",' + - '"domain": {' + - '"name": "Ether Person",' + - '"version": "1",' + - '"chainId": 1,' + - '"verifyingContract": "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"' + - '},' + - '"message": {' + - '"name": "Cow",' + - '"wallet": "CD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826"' + - '}' + - '})");' + - On error, empty Data is returned. + - 'Returned data must be deleted (hint: use WRAPD() macro).' + - \param messageJson Non-null json abi input + - \return Non-null block of data, encoded abi input diff --git a/codegen-v2/manifest/TWEthereumAbiFunction.yaml b/codegen-v2/manifest/TWEthereumAbiFunction.yaml index 95a54c8338d..790a0920c29 100644 --- a/codegen-v2/manifest/TWEthereumAbiFunction.yaml +++ b/codegen-v2/manifest/TWEthereumAbiFunction.yaml @@ -3,6 +3,8 @@ structs: - name: TWEthereumAbiFunction is_public: true is_class: true + comments: + - Represents Ethereum ABI function inits: - name: TWEthereumAbiFunctionCreateWithString is_public: true @@ -11,11 +13,16 @@ inits: - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a function object, with the given name and empty parameter list. It must be deleted at the end. + - \param name function name + - \return Non-null Ethereum abi function deinits: - name: TWEthereumAbiFunctionDelete + comments: + - Deletes a function object created with a 'TWEthereumAbiFunctionCreateWithString' method. + - \param fn Non-null Ethereum abi function functions: - name: TWEthereumAbiFunctionGetType is_public: true @@ -25,14 +32,14 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Return the function type signature, of the form "baz(int32,uint256)" + - \param fn A Non-null eth abi function + - \return function type signature as a Non-null string. - name: TWEthereumAbiFunctionAddParamUInt8 is_public: true is_static: false @@ -41,26 +48,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a uint8 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamUInt16 is_public: true is_static: false @@ -69,26 +74,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: u_int16_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a uint16 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamUInt32 is_public: true is_static: false @@ -97,26 +100,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a uint32 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamUInt64 is_public: true is_static: false @@ -125,26 +126,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: u_int64_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a uint64 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamUInt256 is_public: true is_static: false @@ -153,26 +152,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a uint256 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamUIntN is_public: true is_static: false @@ -181,32 +178,28 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: bits type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a uint(bits) type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamInt8 is_public: true is_static: false @@ -215,26 +208,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: int8_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a int8 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamInt16 is_public: true is_static: false @@ -243,26 +234,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: int16_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a int16 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamInt32 is_public: true is_static: false @@ -271,26 +260,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: int32_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a int32 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamInt64 is_public: true is_static: false @@ -299,26 +286,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: int64_t - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a int64 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamInt256 is_public: true is_static: false @@ -327,26 +312,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a int256 type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified (stored in a block of data) + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamIntN is_public: true is_static: false @@ -355,32 +338,29 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: bits type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a int(bits) type parameter + - \param fn A Non-null eth abi function + - \param bits Number of bits of the integer parameter + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamBool is_public: true is_static: false @@ -389,26 +369,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: bool - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a bool type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamString is_public: true is_static: false @@ -417,26 +395,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a string type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamAddress is_public: true is_static: false @@ -445,26 +421,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add an address type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamBytes is_public: true is_static: false @@ -473,26 +447,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a bytes type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamBytesFix is_public: true is_static: false @@ -501,32 +473,29 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: size type: variant: size_t - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a bytes[N] type parameter + - \param fn A Non-null eth abi function + - \param size fixed size of the bytes array parameter (val). + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionAddParamArray is_public: true is_static: false @@ -535,20 +504,20 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Add a type[] type parameter + - \param fn A Non-null eth abi function + - \param val for output parameters, value has to be specified + - \param isOutput determines if the parameter is an input or output + - \return the index of the parameter (0-based). - name: TWEthereumAbiFunctionGetParamUInt8 is_public: true is_static: false @@ -557,26 +526,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: idx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Get a uint8 type parameter at the given index + - \param fn A Non-null eth abi function + - \param idx index for the parameter (0-based). + - \param isOutput determines if the parameter is an input or output + - \return the value of the parameter. - name: TWEthereumAbiFunctionGetParamUInt64 is_public: true is_static: false @@ -585,26 +552,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: idx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: u_int64_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Get a uint64 type parameter at the given index + - \param fn A Non-null eth abi function + - \param idx index for the parameter (0-based). + - \param isOutput determines if the parameter is an input or output + - \return the value of the parameter. - name: TWEthereumAbiFunctionGetParamUInt256 is_public: true is_static: false @@ -613,26 +578,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: idx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Get a uint256 type parameter at the given index + - \param fn A Non-null eth abi function + - \param idx index for the parameter (0-based). + - \param isOutput determines if the parameter is an input or output + - \return the value of the parameter stored in a block of data. - name: TWEthereumAbiFunctionGetParamBool is_public: true is_static: false @@ -641,26 +604,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: idx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Get a bool type parameter at the given index + - \param fn A Non-null eth abi function + - \param idx index for the parameter (0-based). + - \param isOutput determines if the parameter is an input or output + - \return the value of the parameter. - name: TWEthereumAbiFunctionGetParamString is_public: true is_static: false @@ -669,26 +630,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: idx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Get a string type parameter at the given index + - \param fn A Non-null eth abi function + - \param idx index for the parameter (0-based). + - \param isOutput determines if the parameter is an input or output + - \return the value of the parameter. - name: TWEthereumAbiFunctionGetParamAddress is_public: true is_static: false @@ -697,26 +656,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: idx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: isOutput type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Get an address type parameter at the given index + - \param fn A Non-null eth abi function + - \param idx index for the parameter (0-based). + - \param isOutput determines if the parameter is an input or output + - \return the value of the parameter. - name: TWEthereumAbiFunctionAddInArrayParamUInt8 is_public: true is_static: false @@ -725,26 +682,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a uint8 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamUInt16 is_public: true is_static: false @@ -753,26 +708,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: u_int16_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a uint16 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamUInt32 is_public: true is_static: false @@ -781,26 +734,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a uint32 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamUInt64 is_public: true is_static: false @@ -809,26 +760,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: u_int64_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a uint64 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamUInt256 is_public: true is_static: false @@ -837,26 +786,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a uint256 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter stored in a block of data + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamUIntN is_public: true is_static: false @@ -865,32 +812,29 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: bits type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a uint[N] type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param bits Number of bits of the integer parameter + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter stored in a block of data + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamInt8 is_public: true is_static: false @@ -899,26 +843,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: int8_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int8 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamInt16 is_public: true is_static: false @@ -927,26 +869,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: int16_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int16 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamInt32 is_public: true is_static: false @@ -955,26 +895,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int32 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamInt64 is_public: true is_static: false @@ -983,26 +921,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: int64_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int64 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamInt256 is_public: true is_static: false @@ -1011,26 +947,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int256 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter stored in a block of data + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamIntN is_public: true is_static: false @@ -1039,32 +973,29 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: bits type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int[N] type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param bits Number of bits of the integer parameter + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter stored in a block of data + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamBool is_public: true is_static: false @@ -1073,26 +1004,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a bool type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamString is_public: true is_static: false @@ -1101,26 +1030,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a string type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamAddress is_public: true is_static: false @@ -1129,26 +1056,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding an address type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamBytes is_public: true is_static: false @@ -1157,26 +1082,24 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a bytes type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). - name: TWEthereumAbiFunctionAddInArrayParamBytesFix is_public: true is_static: false @@ -1185,29 +1108,26 @@ functions: type: variant: struct value: TWEthereumAbiFunction - is_constant: false is_nullable: false - is_pointer: true - name: arrayIdx type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: size type: variant: size_t - is_constant: false is_nullable: false - is_pointer: false - name: val type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adding a int64 type parameter of to the top-level input parameter array + - \param fn A Non-null eth abi function + - \param arrayIdx array index for the abi function (0-based). + - \param size fixed size of the bytes array parameter (val). + - \param val the value of the parameter + - \return the index of the added parameter (0-based). diff --git a/codegen-v2/manifest/TWEthereumAbiValue.yaml b/codegen-v2/manifest/TWEthereumAbiValue.yaml index 31e60cf14f8..e6e9b2f636f 100644 --- a/codegen-v2/manifest/TWEthereumAbiValue.yaml +++ b/codegen-v2/manifest/TWEthereumAbiValue.yaml @@ -3,6 +3,8 @@ structs: - name: TWEthereumAbiValue is_public: true is_class: false + comments: + - Represents Ethereum ABI value functions: - name: TWEthereumAbiValueEncodeBool is_public: true @@ -11,14 +13,14 @@ functions: - name: value type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a bool according to Ethereum ABI, into 32 bytes. Values are padded by 0 on the left, unless specified otherwise + - \param value a boolean value + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeInt32 is_public: true is_static: true @@ -26,14 +28,14 @@ functions: - name: value type: variant: int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a int32 according to Ethereum ABI, into 32 bytes. Values are padded by 0 on the left, unless specified otherwise + - \param value a int32 value + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeUInt32 is_public: true is_static: true @@ -41,14 +43,14 @@ functions: - name: value type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a uint32 according to Ethereum ABI, into 32 bytes. Values are padded by 0 on the left, unless specified otherwise + - \param value a uint32 value + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeInt256 is_public: true is_static: true @@ -56,14 +58,14 @@ functions: - name: value type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a int256 according to Ethereum ABI, into 32 bytes. Values are padded by 0 on the left, unless specified otherwise + - \param value a int256 value stored in a block of data + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeUInt256 is_public: true is_static: true @@ -71,14 +73,14 @@ functions: - name: value type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode an int256 according to Ethereum ABI, into 32 bytes. Values are padded by 0 on the left, unless specified otherwise + - \param value a int256 value stored in a block of data + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeAddress is_public: true is_static: true @@ -86,14 +88,14 @@ functions: - name: value type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode an address according to Ethereum ABI, 20 bytes of the address. + - \param value an address value stored in a block of data + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeString is_public: true is_static: true @@ -101,14 +103,14 @@ functions: - name: value type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a string according to Ethereum ABI by encoding its hash. + - \param value a string value + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeBytes is_public: true is_static: true @@ -116,14 +118,14 @@ functions: - name: value type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a number of bytes, up to 32 bytes, padded on the right. Longer arrays are truncated. + - \param value bunch of bytes + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueEncodeBytesDyn is_public: true is_static: true @@ -131,14 +133,14 @@ functions: - name: value type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Encode a dynamic number of bytes by encoding its hash + - \param value bunch of bytes + - \return Encoded value stored in a block of data - name: TWEthereumAbiValueDecodeUInt256 is_public: true is_static: true @@ -146,14 +148,14 @@ functions: - name: input type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Decodes input data (bytes longer than 32 will be truncated) as uint256 + - \param input Data to be decoded + - \return Non-null decoded string value - name: TWEthereumAbiValueDecodeValue is_public: true is_static: true @@ -161,20 +163,19 @@ functions: - name: input type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: type type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Decode an arbitrary type, return value as string + - \param input Data to be decoded + - \param type the underlying type that need to be decoded + - \return Non-null decoded string value - name: TWEthereumAbiValueDecodeArray is_public: true is_static: true @@ -182,17 +183,16 @@ functions: - name: input type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: type type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Decode an array of given simple types. Return a '\n'-separated string of elements + - \param input Data to be decoded + - \param type the underlying type that need to be decoded + - \return Non-null decoded string value diff --git a/codegen-v2/manifest/TWEthereumChainID.yaml b/codegen-v2/manifest/TWEthereumChainID.yaml index ec004a4bdf1..8013278f658 100644 --- a/codegen-v2/manifest/TWEthereumChainID.yaml +++ b/codegen-v2/manifest/TWEthereumChainID.yaml @@ -75,3 +75,6 @@ enums: value: 56 - name: aurora value: 1313161554 + comments: + - Chain identifiers for Ethereum-based blockchains, for convenience. Recommended to use the dynamic CoinType.ChainId() instead. + - See also TWChainId. diff --git a/codegen-v2/manifest/TWEthereumMessageSigner.yaml b/codegen-v2/manifest/TWEthereumMessageSigner.yaml index 628ed6cbf76..9ff031933a9 100644 --- a/codegen-v2/manifest/TWEthereumMessageSigner.yaml +++ b/codegen-v2/manifest/TWEthereumMessageSigner.yaml @@ -3,6 +3,10 @@ structs: - name: TWEthereumMessageSigner is_public: true is_class: false + comments: + - Ethereum message signing and verification. + - Ethereum and some other wallets support a message signing & verification format, to create a proof (a signature) + - that someone has access to the private keys of a specific address. functions: - name: TWEthereumMessageSignerSignTypedMessage is_public: true @@ -12,20 +16,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: messageJson type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a typed message EIP-712 V4. + - '\param privateKey: the private key used for signing' + - '\param messageJson: A custom typed data message in json' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWEthereumMessageSignerSignTypedMessageEip155 is_public: true is_static: true @@ -34,26 +37,24 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: messageJson type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: chainId type: variant: int - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a typed message EIP-712 V4 with EIP-155 replay attack protection. + - '\param privateKey: the private key used for signing' + - '\param messageJson: A custom typed data message in json' + - '\param chainId: chainId for eip-155 protection' + - \returns the signature, Hex-encoded. On invalid input empty string is returned or invalid chainId error message. Returned object needs to be deleted after use. - name: TWEthereumMessageSignerSignMessage is_public: true is_static: true @@ -62,20 +63,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message. + - '\param privateKey: the private key used for signing' + - '\param message: A custom message which is input to the signing.' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWEthereumMessageSignerSignMessageImmutableX is_public: true is_static: true @@ -84,20 +84,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message with Immutable X msg type. + - '\param privateKey: the private key used for signing' + - '\param message: A custom message which is input to the signing.' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWEthereumMessageSignerSignMessageEip155 is_public: true is_static: true @@ -106,26 +105,24 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: chainId type: variant: int - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message with Eip-155 msg type. + - '\param privateKey: the private key used for signing' + - '\param message: A custom message which is input to the signing.' + - '\param chainId: chainId for eip-155 protection' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWEthereumMessageSignerVerifyMessage is_public: true is_static: true @@ -134,23 +131,21 @@ functions: type: variant: struct value: TWPublicKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: signature type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify signature for a message. + - '\param pubKey: pubKey that will verify and recover the message from the signature' + - '\param message: the message signed (without prefix)' + - '\param signature: in Hex-encoded form.' + - \returns false on any invalid input (does not throw), true if the message can be recovered from the signature diff --git a/codegen-v2/manifest/TWFIOAccount.yaml b/codegen-v2/manifest/TWFIOAccount.yaml index b95d7f7f461..256f3a2c3a0 100644 --- a/codegen-v2/manifest/TWFIOAccount.yaml +++ b/codegen-v2/manifest/TWFIOAccount.yaml @@ -3,6 +3,8 @@ structs: - name: TWFIOAccount is_public: true is_class: true + comments: + - Represents a FIO Account name inits: - name: TWFIOAccountCreateWithString is_public: true @@ -11,16 +13,24 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Create a FIO Account + - \param string Account name + - \note Must be deleted with \TWFIOAccountDelete + - \return Pointer to a nullable FIO Account deinits: - name: TWFIOAccountDelete + comments: + - Delete a FIO Account + - \param account Pointer to a non-null FIO Account properties: - name: TWFIOAccountDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the short account string representation. + - \param account Pointer to a non-null FIO Account + - \return Account non-null string representation diff --git a/codegen-v2/manifest/TWFilecoinAddressConverter.yaml b/codegen-v2/manifest/TWFilecoinAddressConverter.yaml index 1823914ebef..7a0cf4f01c7 100644 --- a/codegen-v2/manifest/TWFilecoinAddressConverter.yaml +++ b/codegen-v2/manifest/TWFilecoinAddressConverter.yaml @@ -3,6 +3,8 @@ structs: - name: TWFilecoinAddressConverter is_public: true is_class: false + comments: + - Filecoin-Ethereum address converter. functions: - name: TWFilecoinAddressConverterConvertToEthereum is_public: true @@ -11,14 +13,14 @@ functions: - name: filecoinAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Converts a Filecoin address to Ethereum. + - '\param filecoinAddress: a Filecoin address.' + - \returns the Ethereum address. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWFilecoinAddressConverterConvertFromEthereum is_public: true is_static: true @@ -26,11 +28,11 @@ functions: - name: ethAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Converts an Ethereum address to Filecoin. + - '\param ethAddress: an Ethereum address.' + - \returns the Filecoin address. On invalid input empty string is returned. Returned object needs to be deleted after use. diff --git a/codegen-v2/manifest/TWFilecoinAddressType.yaml b/codegen-v2/manifest/TWFilecoinAddressType.yaml index d7b3e3186d6..8ddee9a1379 100644 --- a/codegen-v2/manifest/TWFilecoinAddressType.yaml +++ b/codegen-v2/manifest/TWFilecoinAddressType.yaml @@ -9,3 +9,5 @@ enums: value: 0 - name: delegated value: 1 + comments: + - Filecoin address type. diff --git a/codegen-v2/manifest/TWGroestlcoinAddress.yaml b/codegen-v2/manifest/TWGroestlcoinAddress.yaml index 8f25de34905..eb2dff7c261 100644 --- a/codegen-v2/manifest/TWGroestlcoinAddress.yaml +++ b/codegen-v2/manifest/TWGroestlcoinAddress.yaml @@ -6,6 +6,8 @@ structs: - name: TWGroestlcoinAddress is_public: true is_class: true + comments: + - Represents a legacy Groestlcoin address. inits: - name: TWGroestlcoinAddressCreateWithString is_public: true @@ -14,9 +16,12 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Create an address from a base58 string representation. + - \param string Non-null string + - \note Must be deleted with \TWGroestlcoinAddressDelete + - \return Non-null GroestlcoinAddress - name: TWGroestlcoinAddressCreateWithPublicKey is_public: true is_nullable: false @@ -25,17 +30,22 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: prefix type: variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Create an address from a public key and a prefix byte. + - \param publicKey Non-null public key + - \param prefix public key prefix + - \note Must be deleted with \TWGroestlcoinAddressDelete + - \return Non-null GroestlcoinAddress deinits: - name: TWGroestlcoinAddressDelete + comments: + - Delete a Groestlcoin address + - \param address Non-null GroestlcoinAddress functions: - name: TWGroestlcoinAddressEqual is_public: true @@ -45,21 +55,20 @@ functions: type: variant: struct value: TWGroestlcoinAddress - is_constant: false is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWGroestlcoinAddress - is_constant: false is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Compares two addresses for equality. + - \param lhs left Non-null GroestlCoin address to be compared + - \param rhs right Non-null GroestlCoin address to be compared + - \return true if both address are equal, false otherwise - name: TWGroestlcoinAddressIsValidString is_public: true is_static: true @@ -67,19 +76,21 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Groestlcoin address. + - \param string Non-null string. + - \return true if it's a valid address, false otherwise properties: - name: TWGroestlcoinAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address base58 string representation. + - \param address Non-null GroestlcoinAddress + - \return Address description as a non-null string diff --git a/codegen-v2/manifest/TWHDVersion.yaml b/codegen-v2/manifest/TWHDVersion.yaml index 72cfb07914a..1bba574a4be 100644 --- a/codegen-v2/manifest/TWHDVersion.yaml +++ b/codegen-v2/manifest/TWHDVersion.yaml @@ -5,48 +5,71 @@ enums: value_type: variant: u_int32_t variants: - - name: none + - name: None value: 0 - - name: xpub + # Bitcoin + - name: XPUB value: 0x0488b21e - - name: xprv + - name: XPRV value: 0x0488ade4 - - name: ypub + - name: YPUB value: 0x049d7cb2 - - name: yprv + - name: YPRV value: 0x049d7878 - - name: zpub + - name: ZPUB value: 0x04b24746 - - name: zprv + - name: ZPRV value: 0x04b2430c - - name: ltub + - name: VPUB + value: 0x045f1cf6 + - name: VPRV + value: 0x045f18bc + - name: TPUB + value: 0x043587cf + - name: TPRV + value: 0x04358394 + # Litecoin + - name: LTUB value: 0x019da462 - - name: ltpv + - name: LTPV value: 0x019d9cfe - - name: mtub + - name: MTUB value: 0x01b26ef6 - - name: mtpv + - name: MTPV value: 0x01b26792 - - name: dpub + - name: TTUB + value: 0x0436f6e1 + - name: TTPV + value: 0x0436ef7d + # Decred + - name: DPUB value: 0x2fda926 - - name: dprv + - name: DPRV value: 0x2fda4e8 - - name: dgub + # Dogecoin + - name: DGUB value: 0x02facafd - - name: dgpv + - name: DGPV value: 0x02fac398 + comments: + - Registered HD version bytes + - \see https://github.com/satoshilabs/slips/blob/master/slip-0132.md properties: - name: TWHDVersionIsPublic is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determine if the HD Version is public + - \param version HD version + - \return true if the version is public, false otherwise - name: TWHDVersionIsPrivate is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determine if the HD Version is private + - \param version HD version + - \return true if the version is private, false otherwise diff --git a/codegen-v2/manifest/TWHDWallet.yaml b/codegen-v2/manifest/TWHDWallet.yaml index 34dd244a3c9..064f67a4e8e 100644 --- a/codegen-v2/manifest/TWHDWallet.yaml +++ b/codegen-v2/manifest/TWHDWallet.yaml @@ -3,6 +3,8 @@ structs: - name: TWHDWallet is_public: true is_class: true + comments: + - Hierarchical Deterministic (HD) Wallet inits: - name: TWHDWalletCreate is_public: true @@ -11,15 +13,18 @@ inits: - name: strength type: variant: int - is_constant: false is_nullable: false - is_pointer: false - name: passphrase type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a new HDWallet with a new random mnemonic with the provided strength in bits. + - \param strength strength in bits + - \param passphrase non-null passphrase + - \note Null is returned on invalid strength + - \note Returned object needs to be deleted with \TWHDWalletDelete + - \return Nullable TWHDWallet - name: TWHDWalletCreateWithMnemonic is_public: true is_nullable: true @@ -27,15 +32,18 @@ inits: - name: mnemonic type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: passphrase type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an HDWallet from a valid BIP39 English mnemonic and a passphrase. + - \param mnemonic non-null Valid BIP39 mnemonic + - \param passphrase non-null passphrase + - \note Null is returned on invalid mnemonic + - \note Returned object needs to be deleted with \TWHDWalletDelete + - \return Nullable TWHDWallet - name: TWHDWalletCreateWithMnemonicCheck is_public: true is_nullable: true @@ -43,21 +51,23 @@ inits: - name: mnemonic type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: passphrase type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: check type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an HDWallet from a BIP39 mnemonic, a passphrase and validation flag. + - \param mnemonic non-null Valid BIP39 mnemonic + - \param passphrase non-null passphrase + - \param check validation flag + - \note Null is returned on invalid mnemonic + - \note Returned object needs to be deleted with \TWHDWalletDelete + - \return Nullable TWHDWallet - name: TWHDWalletCreateWithEntropy is_public: true is_nullable: true @@ -65,17 +75,23 @@ inits: - name: entropy type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: passphrase type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an HDWallet from entropy (corresponding to a mnemonic). + - \param entropy Non-null entropy data (corresponding to a mnemonic) + - \param passphrase non-null passphrase + - \note Null is returned on invalid input + - \note Returned object needs to be deleted with \TWHDWalletDelete + - \return Nullable TWHDWallet deinits: - name: TWHDWalletDelete + comments: + - Deletes a wallet. + - \param wallet non-null TWHDWallet functions: - name: TWHDWalletGetMasterKey is_public: true @@ -85,22 +101,22 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: curve type: variant: enum value: TWCurve - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns master key. + - \param wallet non-null TWHDWallet + - \param curve a curve + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return Non-null corresponding private key - name: TWHDWalletGetKeyForCoin is_public: true is_static: false @@ -109,22 +125,24 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Generates the default private key for the specified coin, using default derivation. + - \see TWHDWalletGetKey + - \see TWHDWalletGetKeyDerivation + - \param wallet non-null TWHDWallet + - \param coin a coin type + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return return the default private key for the specified coin - name: TWHDWalletGetAddressForCoin is_public: true is_static: false @@ -133,21 +151,21 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Generates the default address for the specified coin (without exposing intermediary private key), default derivation. + - \see TWHDWalletGetAddressDerivation + - \param wallet non-null TWHDWallet + - \param coin a coin type + - \return return the default address for the specified coin as a non-null TWString - name: TWHDWalletGetAddressDerivation is_public: true is_static: false @@ -156,28 +174,27 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Generates the default address for the specified coin and derivation (without exposing intermediary private key). + - \see TWHDWalletGetAddressForCoin + - \param wallet non-null TWHDWallet + - \param coin a coin type + - \param derivation a (custom) derivation to use + - \return return the default address for the specified coin as a non-null TWString - name: TWHDWalletGetKey is_public: true is_static: false @@ -186,28 +203,29 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Generates the private key for the specified derivation path. + - \see TWHDWalletGetKeyForCoin + - \see TWHDWalletGetKeyDerivation + - \param wallet non-null TWHDWallet + - \param coin a coin type + - \param derivationPath a non-null derivation path + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return The private key for the specified derivation path/coin - name: TWHDWalletGetKeyDerivation is_public: true is_static: false @@ -216,29 +234,30 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Generates the private key for the specified derivation. + - \see TWHDWalletGetKey + - \see TWHDWalletGetKeyForCoin + - \param wallet non-null TWHDWallet + - \param coin a coin type + - \param derivation a (custom) derivation to use + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return The private key for the specified derivation path/coin - name: TWHDWalletGetKeyByCurve is_public: true is_static: false @@ -247,28 +266,27 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: curve type: variant: enum value: TWCurve - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Generates the private key for the specified derivation path and curve. + - \param wallet non-null TWHDWallet + - \param curve a curve + - \param derivationPath a non-null derivation path + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return The private key for the specified derivation path/curve - name: TWHDWalletGetDerivedKey is_public: true is_static: false @@ -277,40 +295,38 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: account type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: change type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: address type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Shortcut method to generate private key with the specified account/change/address (bip44 standard). + - \see https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki + - \param wallet non-null TWHDWallet + - \param coin a coin type + - \param account valid bip44 account + - \param change valid bip44 change + - \param address valid bip44 address + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return The private key for the specified bip44 parameters - name: TWHDWalletGetExtendedPrivateKey is_public: true is_static: false @@ -319,35 +335,33 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: purpose type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: version type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the extended private key (for default 0 account). + - \param wallet non-null TWHDWallet + - \param purpose a purpose + - \param coin a coin type + - \param version hd version + - \note Returned object needs to be deleted with \TWStringDelete + - \return Extended private key as a non-null TWString - name: TWHDWalletGetExtendedPublicKey is_public: true is_static: false @@ -356,35 +370,33 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: purpose type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: version type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the extended public key (for default 0 account). + - \param wallet non-null TWHDWallet + - \param purpose a purpose + - \param coin a coin type + - \param version hd version + - \note Returned object needs to be deleted with \TWStringDelete + - \return Extended public key as a non-null TWString - name: TWHDWalletGetExtendedPrivateKeyAccount is_public: true is_static: false @@ -393,48 +405,44 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: purpose type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: version type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false - name: account type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the extended private key, for custom account. + - \param wallet non-null TWHDWallet + - \param purpose a purpose + - \param coin a coin type + - \param derivation a derivation + - \param version an hd version + - \param account valid bip44 account + - \note Returned object needs to be deleted with \TWStringDelete + - \return Extended private key as a non-null TWString - name: TWHDWalletGetExtendedPublicKeyAccount is_public: true is_static: false @@ -443,48 +451,44 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: purpose type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: version type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false - name: account type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the extended public key, for custom account. + - \param wallet non-null TWHDWallet + - \param purpose a purpose + - \param coin a coin type + - \param derivation a derivation + - \param version an hd version + - \param account valid bip44 account + - \note Returned object needs to be deleted with \TWStringDelete + - \return Extended public key as a non-null TWString - name: TWHDWalletGetExtendedPrivateKeyDerivation is_public: true is_static: false @@ -493,42 +497,39 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: purpose type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: version type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the extended private key (for default 0 account with derivation). + - \param wallet non-null TWHDWallet + - \param purpose a purpose + - \param coin a coin type + - \param derivation a derivation + - \param version an hd version + - \note Returned object needs to be deleted with \TWStringDelete + - \return Extended private key as a non-null TWString - name: TWHDWalletGetExtendedPublicKeyDerivation is_public: true is_static: false @@ -537,42 +538,39 @@ functions: type: variant: struct value: TWHDWallet - is_constant: false is_nullable: false - is_pointer: true - name: purpose type: variant: enum value: TWPurpose - is_constant: false is_nullable: false - is_pointer: false - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: version type: variant: enum value: TWHDVersion - is_constant: false is_nullable: false - is_pointer: false return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the extended public key (for default 0 account with derivation). + - \param wallet non-null TWHDWallet + - \param purpose a purpose + - \param coin a coin type + - \param derivation a derivation + - \param version an hd version + - \note Returned object needs to be deleted with \TWStringDelete + - \return Extended public key as a non-null TWString - name: TWHDWalletGetPublicKeyFromExtended is_public: true is_static: true @@ -580,47 +578,52 @@ functions: - name: extended type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Computes the public key from an extended public key representation. + - \param extended extended public key + - \param coin a coin type + - \param derivationPath a derivation path + - \note Returned object needs to be deleted with \TWPublicKeyDelete + - \return Nullable TWPublic key properties: - name: TWHDWalletSeed is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Wallet seed. + - \param wallet non-null TWHDWallet + - \return The wallet seed as a Non-null block of data. - name: TWHDWalletMnemonic is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Wallet Mnemonic + - \param wallet non-null TWHDWallet + - \return The wallet mnemonic as a non-null TWString - name: TWHDWalletEntropy is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Wallet entropy + - \param wallet non-null TWHDWallet + - \return The wallet entropy as a non-null block of data. diff --git a/codegen-v2/manifest/TWHRP.yaml b/codegen-v2/manifest/TWHRP.yaml index 3b02a2f6520..3f54bce0784 100644 --- a/codegen-v2/manifest/TWHRP.yaml +++ b/codegen-v2/manifest/TWHRP.yaml @@ -155,6 +155,9 @@ enums: - name: neutron value: 49 as_string: neutron + comments: + - Registered human-readable parts for BIP-0173 + - '- SeeAlso: https://github.com/satoshilabs/slips/blob/master/slip-0173.md' functions: - name: stringForHRP is_public: false @@ -164,14 +167,10 @@ functions: type: variant: enum value: TWHRP - is_constant: false is_nullable: false - is_pointer: false return_type: variant: char - is_constant: true is_nullable: true - is_pointer: true - name: hrpForString is_public: false is_static: false @@ -179,12 +178,8 @@ functions: - name: string type: variant: char - is_constant: true is_nullable: false - is_pointer: true return_type: variant: enum value: TWHRP - is_constant: false is_nullable: false - is_pointer: false diff --git a/codegen-v2/manifest/TWHash.yaml b/codegen-v2/manifest/TWHash.yaml index 6f900c4cb9d..f6a6c24e46e 100644 --- a/codegen-v2/manifest/TWHash.yaml +++ b/codegen-v2/manifest/TWHash.yaml @@ -6,9 +6,9 @@ structs: fields: - - unused - variant: u_int8_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Hash functions functions: - name: TWHashSHA1 is_public: true @@ -17,14 +17,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA1 of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA1 block of data - name: TWHashSHA256 is_public: true is_static: true @@ -32,14 +32,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA256 of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA256 block of data - name: TWHashSHA512 is_public: true is_static: true @@ -47,14 +47,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA512 of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA512 block of data - name: TWHashSHA512_256 is_public: true is_static: true @@ -62,14 +62,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA512_256 of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA512_256 block of data - name: TWHashKeccak256 is_public: true is_static: true @@ -77,14 +77,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Keccak256 of a block of data. + - \param data Non-null block of data + - \return Non-null computed Keccak256 block of data - name: TWHashKeccak512 is_public: true is_static: true @@ -92,14 +92,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Keccak512 of a block of data. + - \param data Non-null block of data + - \return Non-null computed Keccak512 block of data - name: TWHashSHA3_256 is_public: true is_static: true @@ -107,14 +107,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA3_256 of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA3_256 block of data - name: TWHashSHA3_512 is_public: true is_static: true @@ -122,14 +122,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA3_512 of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA3_512 block of data - name: TWHashRIPEMD is_public: true is_static: true @@ -137,14 +137,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the RIPEMD of a block of data. + - \param data Non-null block of data + - \return Non-null computed RIPEMD block of data - name: TWHashBlake256 is_public: true is_static: true @@ -152,14 +152,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Blake256 of a block of data. + - \param data Non-null block of data + - \return Non-null computed Blake256 block of data - name: TWHashBlake2b is_public: true is_static: true @@ -167,20 +167,18 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: size type: variant: size_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Blake2b of a block of data. + - \param data Non-null block of data + - \return Non-null computed Blake2b block of data - name: TWHashGroestl512 is_public: true is_static: true @@ -188,14 +186,39 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Groestl512 of a block of data. + - \param data Non-null block of data + - \return Non-null computed Groestl512 block of data +- name: TWHashBlake2bPersonal + is_public: true + is_static: true + params: + - name: data + type: + variant: data + is_nullable: false + - name: personal + type: + variant: data + is_nullable: false + - name: outlen + type: + variant: size_t + is_nullable: false + return_type: + variant: data + is_nullable: false + comments: + - Computes the Blake2b of a block of data and a persona. + - \param data Non-null block of data + - \param personal Non-null persona + - \param outlen Non-null output length. + - \return Non-null computed Blake256D block of data - name: TWHashSHA256SHA256 is_public: true is_static: true @@ -203,14 +226,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA256D of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA256D block of data - name: TWHashSHA256RIPEMD is_public: true is_static: true @@ -218,14 +241,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA256RIPEMD of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA256RIPEMD block of data - name: TWHashSHA3_256RIPEMD is_public: true is_static: true @@ -233,14 +256,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the SHA3_256RIPEMD of a block of data. + - \param data Non-null block of data + - \return Non-null computed SHA3_256RIPEMD block of data - name: TWHashBlake256Blake256 is_public: true is_static: true @@ -248,14 +271,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Blake256D of a block of data. + - \param data Non-null block of data + - \return Non-null computed Blake256D block of data - name: TWHashBlake256RIPEMD is_public: true is_static: true @@ -263,14 +286,14 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Blake256RIPEMD of a block of data. + - \param data Non-null block of data + - \return Non-null computed Blake256RIPEMD block of data - name: TWHashGroestl512Groestl512 is_public: true is_static: true @@ -278,11 +301,11 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Computes the Groestl512D of a block of data. + - \param data Non-null block of data + - \return Non-null computed Groestl512D block of data diff --git a/codegen-v2/manifest/TWLiquidStaking.yaml b/codegen-v2/manifest/TWLiquidStaking.yaml index e5cbae32b2d..1abca269149 100644 --- a/codegen-v2/manifest/TWLiquidStaking.yaml +++ b/codegen-v2/manifest/TWLiquidStaking.yaml @@ -3,6 +3,8 @@ structs: - name: TWLiquidStaking is_public: true is_class: false + comments: + - THORChain swap functions functions: - name: TWLiquidStakingBuildRequest is_public: true @@ -11,11 +13,11 @@ functions: - name: input type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Builds a LiquidStaking transaction input. + - \param input The serialized data of LiquidStakingInput. + - \return The serialized data of LiquidStakingOutput. diff --git a/codegen-v2/manifest/TWMnemonic.yaml b/codegen-v2/manifest/TWMnemonic.yaml index f1b426ec636..c01c8e81a5c 100644 --- a/codegen-v2/manifest/TWMnemonic.yaml +++ b/codegen-v2/manifest/TWMnemonic.yaml @@ -3,6 +3,8 @@ structs: - name: TWMnemonic is_public: true is_class: false + comments: + - Mnemonic validate / lookup functions functions: - name: TWMnemonicIsValid is_public: true @@ -11,14 +13,14 @@ functions: - name: mnemonic type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether a BIP39 English mnemonic phrase is valid. + - \param mnemonic Non-null BIP39 english mnemonic + - \return true if the mnemonic is valid, false otherwise - name: TWMnemonicIsValidWord is_public: true is_static: true @@ -26,14 +28,14 @@ functions: - name: word type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines whether word is a valid BIP39 English mnemonic word. + - \param word Non-null BIP39 English mnemonic word + - \return true if the word is a valid BIP39 English mnemonic word, false otherwise - name: TWMnemonicSuggest is_public: true is_static: true @@ -41,11 +43,11 @@ functions: - name: prefix type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Return BIP39 English words that match the given prefix. A single string is returned, with space-separated list of words. + - \param prefix Non-null string prefix + - \return Single non-null string, space-separated list of words containing BIP39 words that match the given prefix. diff --git a/codegen-v2/manifest/TWNEARAccount.yaml b/codegen-v2/manifest/TWNEARAccount.yaml index 05b607a0325..7f6be2e2a27 100644 --- a/codegen-v2/manifest/TWNEARAccount.yaml +++ b/codegen-v2/manifest/TWNEARAccount.yaml @@ -3,6 +3,8 @@ structs: - name: TWNEARAccount is_public: true is_class: true + comments: + - Represents a NEAR Account name inits: - name: TWNEARAccountCreateWithString is_public: true @@ -11,16 +13,24 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Create a NEAR Account + - \param string Account name + - \note Account should be deleted by calling \TWNEARAccountDelete + - \return Pointer to a nullable NEAR Account. deinits: - name: TWNEARAccountDelete + comments: + - Delete the given Near Account + - \param account Pointer to a non-null NEAR Account properties: - name: TWNEARAccountDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the user friendly string representation. + - \param account Pointer to a non-null NEAR Account + - \return Non-null string account description diff --git a/codegen-v2/manifest/TWNervosAddress.yaml b/codegen-v2/manifest/TWNervosAddress.yaml index 33a5502426b..dfbc34e3b47 100644 --- a/codegen-v2/manifest/TWNervosAddress.yaml +++ b/codegen-v2/manifest/TWNervosAddress.yaml @@ -3,6 +3,8 @@ structs: - name: TWNervosAddress is_public: true is_class: true + comments: + - Represents a Nervos address. inits: - name: TWNervosAddressCreateWithString is_public: true @@ -11,11 +13,16 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Initializes an address from a sring representaion. + - \param string Bech32 string to initialize the address from. + - \return TWNervosAddress pointer or nullptr if string is invalid. deinits: - name: TWNervosAddressDelete + comments: + - Deletes a Nervos address. + - \param address Address to delete. functions: - name: TWNervosAddressEqual is_public: true @@ -25,21 +32,20 @@ functions: type: variant: struct value: TWNervosAddress - is_constant: false is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWNervosAddress - is_constant: false is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Compares two addresses for equality. + - \param lhs The first address to compare. + - \param rhs The second address to compare. + - \return bool indicating the addresses are equal. - name: TWNervosAddressIsValidString is_public: true is_static: true @@ -47,40 +53,44 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Nervos address. + - \param string string to validate. + - \return bool indicating if the address is valid. properties: - name: TWNervosAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address string representation. + - \param address Address to get the string representation of. - name: TWNervosAddressCodeHash is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the Code hash + - \param address Address to get the keyhash data of. - name: TWNervosAddressHashType is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address hash type + - \param address Address to get the hash type of. - name: TWNervosAddressArgs is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address args data. + - \param address Address to get the args data of. diff --git a/codegen-v2/manifest/TWPBKDF2.yaml b/codegen-v2/manifest/TWPBKDF2.yaml index 1e1a36a0b0f..fc6c0f52edf 100644 --- a/codegen-v2/manifest/TWPBKDF2.yaml +++ b/codegen-v2/manifest/TWPBKDF2.yaml @@ -3,6 +3,8 @@ structs: - name: TWPBKDF2 is_public: true is_class: false + comments: + - Password-Based Key Derivation Function 2 functions: - name: TWPBKDF2HmacSha256 is_public: true @@ -11,32 +13,29 @@ functions: - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: salt type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: iterations type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: dkLen type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Derives a key from a password and a salt using PBKDF2 + Sha256. + - \param password is the master password from which a derived key is generated + - \param salt is a sequence of bits, known as a cryptographic salt + - \param iterations is the number of iterations desired + - \param dkLen is the desired bit-length of the derived key + - \return the derived key data. - name: TWPBKDF2HmacSha512 is_public: true is_static: true @@ -44,29 +43,26 @@ functions: - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: salt type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: iterations type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false - name: dkLen type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Derives a key from a password and a salt using PBKDF2 + Sha512. + - \param password is the master password from which a derived key is generated + - \param salt is a sequence of bits, known as a cryptographic salt + - \param iterations is the number of iterations desired + - \param dkLen is the desired bit-length of the derived key + - \return the derived key data. diff --git a/codegen-v2/manifest/TWPrivateKey.yaml b/codegen-v2/manifest/TWPrivateKey.yaml index 5ec6bfd486d..c5f385debfc 100644 --- a/codegen-v2/manifest/TWPrivateKey.yaml +++ b/codegen-v2/manifest/TWPrivateKey.yaml @@ -3,10 +3,16 @@ structs: - name: TWPrivateKey is_public: true is_class: true + comments: + - Represents a private key. inits: - name: TWPrivateKeyCreate is_public: true is_nullable: false + comments: + - Create a random private key + - \note Should be deleted with \TWPrivateKeyDelete + - \return Non-null Private key - name: TWPrivateKeyCreateWithData is_public: true is_nullable: true @@ -14,9 +20,12 @@ inits: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Create a private key with the given block of data + - \param data a block of data + - \note Should be deleted with \TWPrivateKeyDelete + - \return Nullable pointer to Private Key - name: TWPrivateKeyCreateCopy is_public: true is_nullable: true @@ -25,11 +34,17 @@ inits: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Deep copy a given private key + - \param key Non-null private key to be copied + - \note Should be deleted with \TWPrivateKeyDelete + - \return Deep copy, Nullable pointer to Private key deinits: - name: TWPrivateKeyDelete + comments: + - Delete the given private key + - \param pk Non-null pointer to private key functions: - name: TWPrivateKeyIsValid is_public: true @@ -38,21 +53,20 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: curve type: variant: enum value: TWCurve - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the given private key is valid or not. + - \param data block of data (private key bytes) + - \param curve Eliptic curve of the private key + - \return true if the private key is valid, false otherwise - name: TWPrivateKeyGetPublicKey is_public: true is_static: false @@ -61,22 +75,21 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true - name: coinType type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the public key associated with the given coinType and privateKey + - \param pk Non-null pointer to the private key + - \param coinType coinType of the given private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeyByType is_public: true is_static: false @@ -85,22 +98,21 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true - name: pubkeyType type: variant: enum value: TWPublicKeyType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the public key associated with the given pubkeyType and privateKey + - \param pk Non-null pointer to the private key + - \param pubkeyType pubkeyType of the given private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeySecp256k1 is_public: true is_static: false @@ -109,21 +121,20 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true - name: compressed type: variant: bool - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the Secp256k1 public key associated with the given private key + - \param pk Non-null pointer to the private key + - \param compressed if the given private key is compressed or not + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeyNist256p1 is_public: true is_static: false @@ -132,15 +143,15 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the Nist256p1 public key associated with the given private key + - \param pk Non-null pointer to the private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeyEd25519 is_public: true is_static: false @@ -149,15 +160,15 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the Ed25519 public key associated with the given private key + - \param pk Non-null pointer to the private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeyEd25519Blake2b is_public: true is_static: false @@ -166,15 +177,15 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the Ed25519Blake2b public key associated with the given private key + - \param pk Non-null pointer to the private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeyEd25519Cardano is_public: true is_static: false @@ -183,15 +194,15 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the Ed25519Cardano public key associated with the given private key + - \param pk Non-null pointer to the private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetPublicKeyCurve25519 is_public: true is_static: false @@ -200,15 +211,15 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Returns the Curve25519 public key associated with the given private key + - \param pk Non-null pointer to the private key + - \return Non-null pointer to the corresponding public key - name: TWPrivateKeyGetSharedKey is_public: true is_static: false @@ -217,28 +228,27 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: publicKey type: variant: struct value: TWPublicKey - is_constant: true is_nullable: false - is_pointer: true - name: curve type: variant: enum value: TWCurve - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Computes an EC Diffie-Hellman secret in constant time + - 'Supported curves: secp256k1' + - \param pk Non-null pointer to a Private key + - \param publicKey Non-null pointer to the corresponding public key + - \param curve Eliptic curve + - \return The corresponding shared key as a non-null block of data - name: TWPrivateKeySign is_public: true is_static: false @@ -247,27 +257,25 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true - name: digest type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: curve type: variant: enum value: TWCurve - is_constant: false is_nullable: false - is_pointer: false return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Signs a digest using ECDSA and given curve. + - \param pk Non-null pointer to a Private key + - \param digest Non-null digest block of data + - \param curve Eliptic curve + - \return Signature as a Non-null block of data - name: TWPrivateKeySignAsDER is_public: true is_static: false @@ -276,20 +284,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true - name: digest type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Signs a digest using ECDSA. The result is encoded with DER. + - \param pk Non-null pointer to a Private key + - \param digest Non-null digest block of data + - \return Signature as a Non-null block of data - name: TWPrivateKeySignZilliqaSchnorr is_public: true is_static: false @@ -298,25 +305,26 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true - name: message type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Signs a digest using ECDSA and Zilliqa schnorr signature scheme. + - \param pk Non-null pointer to a Private key + - \param message Non-null message + - \return Signature as a Non-null block of data properties: - name: TWPrivateKeyData is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Convert the given private key to raw-bytes block of data + - \param pk Non-null pointer to the private key + - \return Non-null block of data (raw bytes) of the given private key diff --git a/codegen-v2/manifest/TWPrivateKeyType.yaml b/codegen-v2/manifest/TWPrivateKeyType.yaml index c16c8082188..81e045104d7 100644 --- a/codegen-v2/manifest/TWPrivateKeyType.yaml +++ b/codegen-v2/manifest/TWPrivateKeyType.yaml @@ -9,3 +9,5 @@ enums: value: 0 - name: cardano value: 1 + comments: + - Private key types, the vast majority of chains use the default, 32-byte key. diff --git a/codegen-v2/manifest/TWPublicKey.yaml b/codegen-v2/manifest/TWPublicKey.yaml index bacfe840deb..f4bedd39f50 100644 --- a/codegen-v2/manifest/TWPublicKey.yaml +++ b/codegen-v2/manifest/TWPublicKey.yaml @@ -3,6 +3,8 @@ structs: - name: TWPublicKey is_public: true is_class: true + comments: + - Represents a public key. inits: - name: TWPublicKeyCreateWithData is_public: true @@ -11,18 +13,23 @@ inits: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: type type: variant: enum value: TWPublicKeyType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Create a public key from a block of data + - \param data Non-null block of data representing the public key + - \param type type of the public key + - \note Should be deleted with \TWPublicKeyDelete + - \return Nullable pointer to the public key deinits: - name: TWPublicKeyDelete + comments: + - Delete the given public key + - \param pk Non-null pointer to a public key functions: - name: TWPublicKeyIsValid is_public: true @@ -31,21 +38,20 @@ functions: - name: data type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: type type: variant: enum value: TWPublicKeyType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the given public key is valid or not + - \param data Non-null block of data representing the public key + - \param type type of the public key + - \return true if the block of data is a valid public key, false otherwise - name: TWPublicKeyVerify is_public: true is_static: false @@ -54,26 +60,24 @@ functions: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: signature type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify the validity of a signature and a message using the given public key + - \param pk Non-null pointer to a public key + - \param signature Non-null pointer to a block of data corresponding to the signature + - \param message Non-null pointer to a block of data corresponding to the message + - \return true if the signature and the message belongs to the given public key, false otherwise - name: TWPublicKeyVerifyAsDER is_public: true is_static: false @@ -82,26 +86,24 @@ functions: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: signature type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify the validity as DER of a signature and a message using the given public key + - \param pk Non-null pointer to a public key + - \param signature Non-null pointer to a block of data corresponding to the signature + - \param message Non-null pointer to a block of data corresponding to the message + - \return true if the signature and the message belongs to the given public key, false otherwise - name: TWPublicKeyVerifyZilliqaSchnorr is_public: true is_static: false @@ -110,26 +112,24 @@ functions: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: signature type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify a Zilliqa schnorr signature with a signature and message. + - \param pk Non-null pointer to a public key + - \param signature Non-null pointer to a block of data corresponding to the signature + - \param message Non-null pointer to a block of data corresponding to the message + - \return true if the signature and the message belongs to the given public key, false otherwise - name: TWPublicKeyRecover is_public: true is_static: true @@ -137,64 +137,76 @@ functions: - name: signature type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Try to get a public key from a given signature and a message + - \param signature Non-null pointer to a block of data corresponding to the signature + - \param message Non-null pointer to a block of data corresponding to the message + - \return Null pointer if the public key can't be recover from the given signature and message, + - pointer to the public key otherwise properties: - name: TWPublicKeyIsCompressed is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the given public key is compressed or not + - \param pk Non-null pointer to a public key + - \return true if the public key is compressed, false otherwise - name: TWPublicKeyCompressed is_public: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Give the compressed public key of the given non-compressed public key + - \param from Non-null pointer to a non-compressed public key + - \return Non-null pointer to the corresponding compressed public-key - name: TWPublicKeyUncompressed is_public: true return_type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Give the non-compressed public key of a corresponding compressed public key + - \param from Non-null pointer to the corresponding compressed public key + - \return Non-null pointer to the corresponding non-compressed public key - name: TWPublicKeyData is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Gives the raw data of a given public-key + - \param pk Non-null pointer to a public key + - \return Non-null pointer to the raw block of data of the given public key - name: TWPublicKeyKeyType is_public: true return_type: variant: enum value: TWPublicKeyType - is_constant: false is_nullable: false - is_pointer: false + comments: + - Give the public key type (eliptic) of a given public key + - \param publicKey Non-null pointer to a public key + - \return The public key type of the given public key (eliptic) - name: TWPublicKeyDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Get the public key description from a given public key + - \param publicKey Non-null pointer to a public key + - \return Non-null pointer to a string representing the description of the public key diff --git a/codegen-v2/manifest/TWPublicKeyType.yaml b/codegen-v2/manifest/TWPublicKeyType.yaml index 3498161aa65..6e212108566 100644 --- a/codegen-v2/manifest/TWPublicKeyType.yaml +++ b/codegen-v2/manifest/TWPublicKeyType.yaml @@ -23,3 +23,5 @@ enums: value: 7 - name: starkex value: 8 + comments: + - Public key types diff --git a/codegen-v2/manifest/TWPurpose.yaml b/codegen-v2/manifest/TWPurpose.yaml index 8ccf4d8cc0e..18363925904 100644 --- a/codegen-v2/manifest/TWPurpose.yaml +++ b/codegen-v2/manifest/TWPurpose.yaml @@ -13,3 +13,8 @@ enums: value: 84 - name: bip1852 value: 1852 + comments: + - HD wallet purpose + - \see https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki + - \see https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki + - \see https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki diff --git a/codegen-v2/manifest/TWRippleXAddress.yaml b/codegen-v2/manifest/TWRippleXAddress.yaml index 8793e2ce5f4..939a58ee6d4 100644 --- a/codegen-v2/manifest/TWRippleXAddress.yaml +++ b/codegen-v2/manifest/TWRippleXAddress.yaml @@ -6,6 +6,8 @@ structs: - name: TWRippleXAddress is_public: true is_class: true + comments: + - Represents a Ripple X-address. inits: - name: TWRippleXAddressCreateWithString is_public: true @@ -14,9 +16,12 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an address from a string representation. + - \param string Non-null pointer to a string that should be a valid ripple address + - \note Should be deleted with \TWRippleXAddressDelete + - \return Null pointer if the given string is an invalid ripple address, pointer to a Ripple address otherwise - name: TWRippleXAddressCreateWithPublicKey is_public: true is_nullable: false @@ -25,17 +30,22 @@ inits: type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true - name: tag type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates an address from a public key and destination tag. + - \param publicKey Non-null pointer to a public key + - \param tag valid ripple destination tag (1-10) + - \note Should be deleted with \TWRippleXAddressDelete + - \return Non-null pointer to a Ripple Address deinits: - name: TWRippleXAddressDelete + comments: + - Delete the given ripple address + - \param address Non-null pointer to a Ripple Address functions: - name: TWRippleXAddressEqual is_public: true @@ -45,21 +55,20 @@ functions: type: variant: struct value: TWRippleXAddress - is_constant: false is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWRippleXAddress - is_constant: false is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Compares two addresses for equality. + - \param lhs left non-null pointer to a Ripple Address + - \param rhs right non-null pointer to a Ripple Address + - \return true if both address are equal, false otherwise - name: TWRippleXAddressIsValidString is_public: true is_static: true @@ -67,26 +76,30 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Ripple address. + - \param string Non-null pointer to a string that represent the Ripple Address to be checked + - \return true if the given address is a valid Ripple address, false otherwise properties: - name: TWRippleXAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address string representation. + - \param address Non-null pointer to a Ripple Address + - \return Non-null pointer to the ripple address string representation - name: TWRippleXAddressTag is_public: true return_type: variant: u_int32_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the destination tag. + - \param address Non-null pointer to a Ripple Address + - \return The destination tag of the given Ripple Address (1-10) diff --git a/codegen-v2/manifest/TWSS58AddressType.yaml b/codegen-v2/manifest/TWSS58AddressType.yaml index 617d5ca49a0..8a3a53527d9 100644 --- a/codegen-v2/manifest/TWSS58AddressType.yaml +++ b/codegen-v2/manifest/TWSS58AddressType.yaml @@ -9,3 +9,6 @@ enums: value: 0 - name: kusama value: 2 + comments: + - Substrate based chains Address Type + - \see https://github.com/paritytech/substrate/wiki/External-Address-Format-(SS58)#address-type diff --git a/codegen-v2/manifest/TWSegwitAddress.yaml b/codegen-v2/manifest/TWSegwitAddress.yaml index 6225484c27d..6af14c1123a 100644 --- a/codegen-v2/manifest/TWSegwitAddress.yaml +++ b/codegen-v2/manifest/TWSegwitAddress.yaml @@ -6,6 +6,8 @@ structs: - name: TWSegwitAddress is_public: true is_class: true + comments: + - Represents a BIP 0173 address. inits: - name: TWSegwitAddressCreateWithString is_public: true @@ -14,9 +16,12 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an address from a string representation. + - \param string Non-null pointer to a Bech32 address as a string + - \note should be deleted with \TWSegwitAddressDelete + - \return Pointer to a Bech32 address if the string is a valid Bech32 address, null pointer otherwise - name: TWSegwitAddressCreateWithPublicKey is_public: true is_nullable: false @@ -25,18 +30,24 @@ inits: type: variant: enum value: TWHRP - is_constant: false is_nullable: false - is_pointer: false - name: publicKey type: variant: struct value: TWPublicKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Creates a segwit-version-0 address from a public key and HRP prefix. + - Taproot (v>=1) is not supported by this method. + - \param hrp HRP of the utxo coin targeted + - \param publicKey Non-null pointer to the public key of the targeted coin + - \note should be deleted with \TWSegwitAddressDelete + - \return Non-null pointer to the corresponding Segwit address deinits: - name: TWSegwitAddressDelete + comments: + - Delete the given Segwit address + - \param address Non-null pointer to a Segwit address functions: - name: TWSegwitAddressEqual is_public: true @@ -46,21 +57,20 @@ functions: type: variant: struct value: TWSegwitAddress - is_constant: false is_nullable: false - is_pointer: true - name: rhs type: variant: struct value: TWSegwitAddress - is_constant: false is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Compares two addresses for equality. + - \param lhs left non-null pointer to a Bech32 Address + - \param rhs right non-null pointer to a Bech32 Address + - \return true if both address are equal, false otherwise - name: TWSegwitAddressIsValidString is_public: true is_static: true @@ -68,41 +78,49 @@ functions: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Determines if the string is a valid Bech32 address. + - \param string Non-null pointer to a Bech32 address as a string + - \return true if the string is a valid Bech32 address, false otherwise. properties: - name: TWSegwitAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address string representation. + - \param address Non-null pointer to a Segwit Address + - \return Non-null pointer to the segwit address string representation - name: TWSegwitAddressHRP is_public: true return_type: variant: enum value: TWHRP - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the human-readable part. + - \param address Non-null pointer to a Segwit Address + - \return the HRP part of the given address - name: TWSegwitAddressWitnessVersion is_public: true return_type: variant: int - is_constant: false is_nullable: false - is_pointer: false + comments: + - Returns the human-readable part. + - \param address Non-null pointer to a Segwit Address + - \return returns the witness version of the given segwit address - name: TWSegwitAddressWitnessProgram is_public: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the witness program + - \param address Non-null pointer to a Segwit Address + - \return returns the witness data of the given segwit address as a non-null pointer block of data diff --git a/codegen-v2/manifest/TWSolanaAddress.yaml b/codegen-v2/manifest/TWSolanaAddress.yaml index 28908ef2a9d..a6abb4758a3 100644 --- a/codegen-v2/manifest/TWSolanaAddress.yaml +++ b/codegen-v2/manifest/TWSolanaAddress.yaml @@ -3,6 +3,8 @@ structs: - name: TWSolanaAddress is_public: true is_class: true + comments: + - Solana address helper functions inits: - name: TWSolanaAddressCreateWithString is_public: true @@ -11,11 +13,17 @@ inits: - name: string type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates an address from a string representation. + - \param string Non-null pointer to a solana address string + - \note Should be deleted with \TWSolanaAddressDelete + - \return Non-null pointer to a Solana address data structure deinits: - name: TWSolanaAddressDelete + comments: + - Delete the given Solana address + - \param address Non-null pointer to a Solana Address functions: - name: TWSolanaAddressDefaultTokenAddress is_public: true @@ -25,25 +33,26 @@ functions: type: variant: struct value: TWSolanaAddress - is_constant: false is_nullable: false - is_pointer: true - name: tokenMintAddress type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: true - is_pointer: true + comments: + - Derive default token address for token + - \param address Non-null pointer to a Solana Address + - \param tokenMintAddress Non-null pointer to a token mint address as a string + - \return Null pointer if the Default token address for a token is not found, valid pointer otherwise properties: - name: TWSolanaAddressDescription is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Returns the address string representation. + - \param address Non-null pointer to a Solana Address + - \return Non-null pointer to the Solana address string representation diff --git a/codegen-v2/manifest/TWStarkExMessageSigner.yaml b/codegen-v2/manifest/TWStarkExMessageSigner.yaml index 2c927399e52..d7f6cbbece6 100644 --- a/codegen-v2/manifest/TWStarkExMessageSigner.yaml +++ b/codegen-v2/manifest/TWStarkExMessageSigner.yaml @@ -3,6 +3,10 @@ structs: - name: TWStarkExMessageSigner is_public: true is_class: false + comments: + - StarkEx message signing and verification. + - StarkEx and some other wallets support a message signing & verification format, to create a proof (a signature) + - that someone has access to the private keys of a specific address. functions: - name: TWStarkExMessageSignerSignMessage is_public: true @@ -12,20 +16,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message. + - '\param privateKey: the private key used for signing' + - '\param message: A custom hex message which is input to the signing.' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWStarkExMessageSignerVerifyMessage is_public: true is_static: true @@ -34,23 +37,21 @@ functions: type: variant: struct value: TWPublicKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: signature type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify signature for a message. + - '\param pubKey: pubKey that will verify and recover the message from the signature' + - '\param message: the message signed (without prefix) in hex' + - '\param signature: in Hex-encoded form.' + - \returns false on any invalid input (does not throw), true if the message can be recovered from the signature diff --git a/codegen-v2/manifest/TWStarkWare.yaml b/codegen-v2/manifest/TWStarkWare.yaml index 491f36d1826..96112e10a50 100644 --- a/codegen-v2/manifest/TWStarkWare.yaml +++ b/codegen-v2/manifest/TWStarkWare.yaml @@ -12,18 +12,17 @@ functions: type: variant: struct value: TWDerivationPath - is_constant: true is_nullable: false - is_pointer: true - name: signature type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: false - is_pointer: true + comments: + - Generates the private stark key at the given derivation path from a valid eth signature + - \param derivationPath non-null StarkEx Derivation path + - \param signature valid eth signature + - \return The private key for the specified derivation path/signature diff --git a/codegen-v2/manifest/TWStellarMemoType.yaml b/codegen-v2/manifest/TWStellarMemoType.yaml index d086e056a0c..c258e05a5d6 100644 --- a/codegen-v2/manifest/TWStellarMemoType.yaml +++ b/codegen-v2/manifest/TWStellarMemoType.yaml @@ -15,3 +15,5 @@ enums: value: 3 - name: return value: 4 + comments: + - Stellar memo type. diff --git a/codegen-v2/manifest/TWStellarPassphrase.yaml b/codegen-v2/manifest/TWStellarPassphrase.yaml index 4daba41e364..e0045ab19e8 100644 --- a/codegen-v2/manifest/TWStellarPassphrase.yaml +++ b/codegen-v2/manifest/TWStellarPassphrase.yaml @@ -11,3 +11,5 @@ enums: - name: kin value: 1 as_string: Kin Mainnet ; December 2018 + comments: + - Stellar network passphrase string. diff --git a/codegen-v2/manifest/TWStellarVersionByte.yaml b/codegen-v2/manifest/TWStellarVersionByte.yaml index 7e962ba517c..8ee0f8c8c9b 100644 --- a/codegen-v2/manifest/TWStellarVersionByte.yaml +++ b/codegen-v2/manifest/TWStellarVersionByte.yaml @@ -13,3 +13,5 @@ enums: value: 0xc8 - name: sha256Hash value: 0x118 + comments: + - Stellar address version byte. diff --git a/codegen-v2/manifest/TWStoredKey.yaml b/codegen-v2/manifest/TWStoredKey.yaml index 41080bad5c6..46d2ed8d688 100644 --- a/codegen-v2/manifest/TWStoredKey.yaml +++ b/codegen-v2/manifest/TWStoredKey.yaml @@ -3,6 +3,8 @@ structs: - name: TWStoredKey is_public: true is_class: true + comments: + - Represents a key stored as an encrypted file. inits: - name: TWStoredKeyCreateLevel is_public: true @@ -11,22 +13,23 @@ inits: - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: encryptionLevel type: variant: enum value: TWStoredKeyEncryptionLevel - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates a new key, with given encryption strength level. Returned object needs to be deleted. + - \param name The name of the key to be stored + - \param password Non-null block of data, password of the stored key + - \param encryptionLevel The level of encryption, see \TWStoredKeyEncryptionLevel + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return The stored key as a non-null pointer - name: TWStoredKeyCreateLevelAndEncryption is_public: true is_nullable: false @@ -34,29 +37,29 @@ inits: - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: encryptionLevel type: variant: enum value: TWStoredKeyEncryptionLevel - is_constant: false is_nullable: false - is_pointer: false - name: encryption type: variant: enum value: TWStoredKeyEncryption - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates a new key, with given encryption strength level. Returned object needs to be deleted. + - \param name The name of the key to be stored + - \param password Non-null block of data, password of the stored key + - \param encryptionLevel The level of encryption, see \TWStoredKeyEncryptionLevel + - \param encryption cipher encryption mode + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return The stored key as a non-null pointer - name: TWStoredKeyCreate is_public: true is_nullable: false @@ -64,15 +67,18 @@ inits: - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Creates a new key. + - \deprecated use TWStoredKeyCreateLevel. + - \param name The name of the key to be stored + - \param password Non-null block of data, password of the stored key + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return The stored key as a non-null pointer - name: TWStoredKeyCreateEncryption is_public: true is_nullable: false @@ -80,24 +86,29 @@ inits: - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: encryption type: variant: enum value: TWStoredKeyEncryption - is_constant: false is_nullable: false - is_pointer: false + comments: + - Creates a new key. + - \deprecated use TWStoredKeyCreateLevel. + - \param name The name of the key to be stored + - \param password Non-null block of data, password of the stored key + - \param encryption cipher encryption mode + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return The stored key as a non-null pointer deinits: - name: TWStoredKeyDelete + comments: + - Delete a stored key + - \param key The key to be deleted functions: - name: TWStoredKeyLoad is_public: true @@ -106,15 +117,16 @@ functions: - name: path type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWStoredKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Loads a key from a file. + - \param path filepath to the key as a non-null string + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return Nullptr if the key can't be load, the stored key otherwise - name: TWStoredKeyImportPrivateKey is_public: true is_static: true @@ -122,34 +134,32 @@ functions: - name: privateKey type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWStoredKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Imports a private key. + - \param privateKey Non-null Block of data private key + - \param name The name of the stored key to import as a non-null string + - \param password Non-null block of data, password of the stored key + - \param coin the coin type + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return Nullptr if the key can't be imported, the stored key otherwise - name: TWStoredKeyImportPrivateKeyWithEncryption is_public: true is_static: true @@ -157,41 +167,38 @@ functions: - name: privateKey type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: encryption type: variant: enum value: TWStoredKeyEncryption - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWStoredKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Imports a private key. + - \param privateKey Non-null Block of data private key + - \param name The name of the stored key to import as a non-null string + - \param password Non-null block of data, password of the stored key + - \param coin the coin type + - \param encryption cipher encryption mode + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return Nullptr if the key can't be imported, the stored key otherwise - name: TWStoredKeyImportHDWallet is_public: true is_static: true @@ -199,34 +206,32 @@ functions: - name: mnemonic type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWStoredKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Imports an HD wallet. + - \param mnemonic Non-null bip39 mnemonic + - \param name The name of the stored key to import as a non-null string + - \param password Non-null block of data, password of the stored key + - \param coin the coin type + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return Nullptr if the key can't be imported, the stored key otherwise - name: TWStoredKeyImportHDWalletWithEncryption is_public: true is_static: true @@ -234,41 +239,38 @@ functions: - name: mnemonic type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: name type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: encryption type: variant: enum value: TWStoredKeyEncryption - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWStoredKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Imports an HD wallet. + - \param mnemonic Non-null bip39 mnemonic + - \param name The name of the stored key to import as a non-null string + - \param password Non-null block of data, password of the stored key + - \param coin the coin type + - \param encryption cipher encryption mode + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return Nullptr if the key can't be imported, the stored key otherwise - name: TWStoredKeyImportJSON is_public: true is_static: true @@ -276,15 +278,16 @@ functions: - name: json type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWStoredKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Imports a key from JSON. + - \param json Json stored key import format as a non-null block of data + - \note Returned object needs to be deleted with \TWStoredKeyDelete + - \return Nullptr if the key can't be imported, the stored key otherwise - name: TWStoredKeyAccount is_public: true is_static: false @@ -293,21 +296,21 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: index type: variant: size_t - is_constant: false is_nullable: false - is_pointer: false return_type: variant: struct value: TWAccount - is_constant: false is_nullable: true - is_pointer: true + comments: + - Returns the account at a given index. + - \param key Non-null pointer to a stored key + - \param index the account index to be retrieved + - \note Returned object needs to be deleted with \TWAccountDelete + - \return Null pointer if the associated account is not found, pointer to the account otherwise. - name: TWStoredKeyAccountForCoin is_public: true is_static: false @@ -316,29 +319,28 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: wallet type: variant: struct value: TWHDWallet - is_constant: false is_nullable: true - is_pointer: true return_type: variant: struct value: TWAccount - is_constant: false is_nullable: true - is_pointer: true + comments: + - Returns the account for a specific coin, creating it if necessary. + - \param key Non-null pointer to a stored key + - \param coin The coin type + - \param wallet The associated HD wallet, can be null. + - \note Returned object needs to be deleted with \TWAccountDelete + - \return Null pointer if the associated account is not found/not created, pointer to the account otherwise. - name: TWStoredKeyAccountForCoinDerivation is_public: true is_static: false @@ -347,36 +349,34 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: wallet type: variant: struct value: TWHDWallet - is_constant: false is_nullable: true - is_pointer: true return_type: variant: struct value: TWAccount - is_constant: false is_nullable: true - is_pointer: true + comments: + - Returns the account for a specific coin + derivation, creating it if necessary. + - \param key Non-null pointer to a stored key + - \param coin The coin type + - \param derivation The derivation for the given coin + - \param wallet the associated HD wallet, can be null. + - \note Returned object needs to be deleted with \TWAccountDelete + - \return Null pointer if the associated account is not found/not created, pointer to the account otherwise. - name: TWStoredKeyAddAccountDerivation is_public: true is_static: false @@ -385,52 +385,46 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: publicKey type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: extendedPublicKey type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: void - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adds a new account, using given derivation (usually TWDerivationDefault) + - and derivation path (usually matches path from derivation, but custom possible). + - \param key Non-null pointer to a stored key + - \param address Non-null pointer to the address of the coin for this account + - \param coin coin type + - \param derivation derivation of the given coin type + - \param derivationPath HD bip44 derivation path of the given coin + - \param publicKey Non-null public key of the given coin/address + - \param extendedPublicKey Non-null extended public key of the given coin/address - name: TWStoredKeyAddAccount is_public: true is_static: false @@ -439,45 +433,40 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: address type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: publicKey type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: extendedPublicKey type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: void - is_constant: false is_nullable: false - is_pointer: false + comments: + - Adds a new account, using given derivation path. + - \deprecated Use TWStoredKeyAddAccountDerivation (with TWDerivationDefault) instead. + - \param key Non-null pointer to a stored key + - \param address Non-null pointer to the address of the coin for this account + - \param coin coin type + - \param derivationPath HD bip44 derivation path of the given coin + - \param publicKey Non-null public key of the given coin/address + - \param extendedPublicKey Non-null extended public key of the given coin/address - name: TWStoredKeyRemoveAccountForCoin is_public: true is_static: false @@ -486,21 +475,19 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false return_type: variant: void - is_constant: false is_nullable: false - is_pointer: false + comments: + - Remove the account for a specific coin + - \param key Non-null pointer to a stored key + - \param coin Account coin type to be removed - name: TWStoredKeyRemoveAccountForCoinDerivation is_public: true is_static: false @@ -509,28 +496,25 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivation type: variant: enum value: TWDerivation - is_constant: false is_nullable: false - is_pointer: false return_type: variant: void - is_constant: false is_nullable: false - is_pointer: false + comments: + - Remove the account for a specific coin with the given derivation. + - \param key Non-null pointer to a stored key + - \param coin Account coin type to be removed + - \param derivation The derivation of the given coin type - name: TWStoredKeyRemoveAccountForCoinDerivationPath is_public: true is_static: false @@ -539,27 +523,24 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: derivationPath type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: void - is_constant: false is_nullable: false - is_pointer: false + comments: + - Remove the account for a specific coin with the given derivation path. + - \param key Non-null pointer to a stored key + - \param coin Account coin type to be removed + - \param derivationPath The derivation path (bip44) of the given coin type - name: TWStoredKeyStore is_public: true is_static: false @@ -568,20 +549,19 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: path type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Saves the key to a file. + - \param key Non-null pointer to a stored key + - \param path Non-null string filepath where the key will be saved + - \return true if the key was successfully stored in the given filepath file, false otherwise - name: TWStoredKeyDecryptPrivateKey is_public: true is_static: false @@ -590,20 +570,19 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Decrypts the private key. + - \param key Non-null pointer to a stored key + - \param password Non-null block of data, password of the stored key + - \return Decrypted private key as a block of data if success, null pointer otherwise - name: TWStoredKeyDecryptMnemonic is_public: true is_static: false @@ -612,20 +591,19 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: true - is_pointer: true + comments: + - Decrypts the mnemonic phrase. + - \param key Non-null pointer to a stored key + - \param password Non-null block of data, password of the stored key + - \return Bip39 decrypted mnemonic if success, null pointer otherwise - name: TWStoredKeyPrivateKey is_public: true is_static: false @@ -634,28 +612,26 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: coin type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWPrivateKey - is_constant: false is_nullable: true - is_pointer: true + comments: + - Returns the private key for a specific coin. Returned object needs to be deleted. + - \param key Non-null pointer to a stored key + - \param coin Account coin type to be queried + - \note Returned object needs to be deleted with \TWPrivateKeyDelete + - \return Null pointer on failure, pointer to the private key otherwise - name: TWStoredKeyWallet is_public: true is_static: false @@ -664,21 +640,21 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: struct value: TWHDWallet - is_constant: false is_nullable: true - is_pointer: true + comments: + - Decrypts and returns the HD Wallet for mnemonic phrase keys. Returned object needs to be deleted. + - \param key Non-null pointer to a stored key + - \param password Non-null block of data, password of the stored key + - \note Returned object needs to be deleted with \TWHDWalletDelete + - \return Null pointer on failure, pointer to the HDWallet otherwise - name: TWStoredKeyExportJSON is_public: true is_static: false @@ -687,14 +663,14 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: true - is_pointer: true + comments: + - Exports the key as JSON + - \param key Non-null pointer to a stored key + - \return Null pointer on failure, pointer to a block of data containing the json otherwise - name: TWStoredKeyFixAddresses is_public: true is_static: false @@ -703,53 +679,65 @@ functions: type: variant: struct value: TWStoredKey - is_constant: false is_nullable: false - is_pointer: true - name: password type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Fills in empty and invalid addresses. + - This method needs the encryption password to re-derive addresses from private keys. + - \param key Non-null pointer to a stored key + - \param password Non-null block of data, password of the stored key + - \return `false` if the password is incorrect, true otherwise. properties: - name: TWStoredKeyIdentifier is_public: true return_type: variant: string - is_constant: true is_nullable: true - is_pointer: true + comments: + - Stored key unique identifier. + - \param key Non-null pointer to a stored key + - \note Returned object needs to be deleted with \TWStringDelete + - \return The stored key unique identifier if it's found, null pointer otherwise. - name: TWStoredKeyName is_public: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Stored key namer. + - \param key Non-null pointer to a stored key + - \note Returned object needs to be deleted with \TWStringDelete + - \return The stored key name as a non-null string pointer. - name: TWStoredKeyIsMnemonic is_public: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Whether this key is a mnemonic phrase for a HD wallet. + - \param key Non-null pointer to a stored key + - \return true if the given stored key is a mnemonic, false otherwise - name: TWStoredKeyAccountCount is_public: true return_type: variant: size_t - is_constant: false is_nullable: false - is_pointer: false + comments: + - The number of accounts. + - \param key Non-null pointer to a stored key + - \return the number of accounts associated to the given stored key - name: TWStoredKeyEncryptionParameters is_public: true return_type: variant: string - is_constant: true is_nullable: true - is_pointer: true + comments: + - Retrieve stored key encoding parameters, as JSON string. + - \param key Non-null pointer to a stored key + - \return Null pointer on failure, encoding parameter as a json string otherwise. diff --git a/codegen-v2/manifest/TWStoredKeyEncryption.yaml b/codegen-v2/manifest/TWStoredKeyEncryption.yaml index 417bea38cb3..11e1aac5f3a 100644 --- a/codegen-v2/manifest/TWStoredKeyEncryption.yaml +++ b/codegen-v2/manifest/TWStoredKeyEncryption.yaml @@ -13,3 +13,5 @@ enums: value: 2 - name: aes256Ctr value: 3 + comments: + - Preset encryption kind diff --git a/codegen-v2/manifest/TWStoredKeyEncryptionLevel.yaml b/codegen-v2/manifest/TWStoredKeyEncryptionLevel.yaml index 4c0df079d88..33519e19b9e 100644 --- a/codegen-v2/manifest/TWStoredKeyEncryptionLevel.yaml +++ b/codegen-v2/manifest/TWStoredKeyEncryptionLevel.yaml @@ -13,3 +13,5 @@ enums: value: 2 - name: standard value: 3 + comments: + - Preset encryption parameter with different security strength, for key store diff --git a/codegen-v2/manifest/TWSubstrateAddress.yaml b/codegen-v2/manifest/TWSubstrateAddress.yaml new file mode 100644 index 00000000000..0824e2b6122 --- /dev/null +++ b/codegen-v2/manifest/TWSubstrateAddress.yaml @@ -0,0 +1,86 @@ +name: TWSubstrateAddress +structs: +- name: TWSubstrateAddress + is_public: true + is_class: true + comments: + - Represents a Substrate address. +inits: +- name: TWSubstrateAddressCreateWithString + is_public: true + is_nullable: true + params: + - name: string + type: + variant: string + is_nullable: false + - name: network + type: + variant: int32_t + is_nullable: false + comments: + - Determines if the string is a valid Substrate address. +- name: TWSubstrateAddressCreateWithPublicKey + is_public: true + is_nullable: false + params: + - name: string + type: + variant: struct + value: TWPublicKey + is_nullable: false + - name: network + type: + variant: int32_t + is_nullable: false + comments: + - Determines if the string is a valid Substrate address. +deinits: +- name: TWSubstrateAddressDelete + comments: + - Delete address object +functions: +- name: TWSubstrateAddressEqual + is_public: true + is_static: true + params: + - name: lhs + type: + variant: struct + value: TWSubstrateAddress + is_nullable: false + - name: rhs + type: + variant: struct + value: TWSubstrateAddress + is_nullable: false + return_type: + variant: bool + is_nullable: false + comments: + - Compares two addresses for equality. +- name: TWSubstrateAddressIsValidString + is_public: true + is_static: true + params: + - name: string + type: + variant: string + is_nullable: false + - name: network + type: + variant: int32_t + is_nullable: false + return_type: + variant: bool + is_nullable: false + comments: + - Determines if the string is a valid Substrate address. +properties: +- name: TWSubstrateAddressDescription + is_public: true + return_type: + variant: string + is_nullable: false + comments: + - Returns the address string representation. diff --git a/codegen-v2/manifest/TWSubstrateSigner.yaml b/codegen-v2/manifest/TWSubstrateSigner.yaml new file mode 100644 index 00000000000..82050e4142c --- /dev/null +++ b/codegen-v2/manifest/TWSubstrateSigner.yaml @@ -0,0 +1,40 @@ +name: TWSubstrateSigner +structs: +- name: TWSubstrateSigner + is_public: true + is_class: true +functions: +- name: TWSubstrateSignerMessage + is_public: true + is_static: true + params: + - name: data + type: + variant: data + is_nullable: false + return_type: + variant: data + is_nullable: false + comments: + - Builds a message to be signed. +- name: TWSubstrateSignerTransaction + is_public: true + is_static: true + params: + - name: data + type: + variant: data + is_nullable: false + - name: publicKey + type: + variant: data + is_nullable: false + - name: signature + type: + variant: data + is_nullable: false + return_type: + variant: data + is_nullable: false + comments: + - Builds a transaction to be broadcasted. diff --git a/codegen-v2/manifest/TWTHORChainSwap.yaml b/codegen-v2/manifest/TWTHORChainSwap.yaml index f6e42c8966f..d45019013d3 100644 --- a/codegen-v2/manifest/TWTHORChainSwap.yaml +++ b/codegen-v2/manifest/TWTHORChainSwap.yaml @@ -3,6 +3,8 @@ structs: - name: TWTHORChainSwap is_public: true is_class: false + comments: + - THORChain swap functions functions: - name: TWTHORChainSwapBuildSwap is_public: true @@ -11,11 +13,11 @@ functions: - name: input type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Builds a THORChainSwap transaction input. + - \param input The serialized data of SwapInput. + - \return The serialized data of SwapOutput. diff --git a/codegen-v2/manifest/TWTezosMessageSigner.yaml b/codegen-v2/manifest/TWTezosMessageSigner.yaml index 7019250a8d6..023b6a98715 100644 --- a/codegen-v2/manifest/TWTezosMessageSigner.yaml +++ b/codegen-v2/manifest/TWTezosMessageSigner.yaml @@ -3,6 +3,8 @@ structs: - name: TWTezosMessageSigner is_public: true is_class: false + comments: + - Tezos message signing, verification and utilities. functions: - name: TWTezosMessageSignerFormatMessage is_public: true @@ -11,20 +13,19 @@ functions: - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: url type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Implement format input as described in https://tezostaquito.io/docs/signing/ + - '\param message message to format e.g: Hello, World' + - '\param dAppUrl the app url, e.g: testUrl' + - \returns the formatted message as a string - name: TWTezosMessageSignerInputToPayload is_public: true is_static: true @@ -32,14 +33,14 @@ functions: - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - 'Implement input to payload as described in: https://tezostaquito.io/docs/signing/' + - \param message formatted message to be turned into an hex payload + - \return the hexpayload of the formated message as a hex string - name: TWTezosMessageSignerSignMessage is_public: true is_static: true @@ -48,20 +49,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message as described in https://tezostaquito.io/docs/signing/ + - '\param privateKey: the private key used for signing' + - '\param message: A custom message payload (hex) which is input to the signing.' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWTezosMessageSignerVerifyMessage is_public: true is_static: true @@ -70,23 +70,21 @@ functions: type: variant: struct value: TWPublicKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: signature type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify signature for a message as described in https://tezostaquito.io/docs/signing/ + - '\param pubKey: pubKey that will verify the message from the signature' + - '\param message: the message signed as a payload (hex)' + - '\param signature: in Base58-encoded form.' + - \returns false on any invalid input (does not throw), true if the message can be verified from the signature diff --git a/codegen-v2/manifest/TWTransactionCompiler.yaml b/codegen-v2/manifest/TWTransactionCompiler.yaml index e31c93bd780..ca7035d7cbd 100644 --- a/codegen-v2/manifest/TWTransactionCompiler.yaml +++ b/codegen-v2/manifest/TWTransactionCompiler.yaml @@ -3,6 +3,8 @@ structs: - name: TWTransactionCompiler is_public: true is_class: false + comments: + - Non-core transaction utility methods, like building a transaction using an external signature. functions: - name: TWTransactionCompilerBuildInput is_public: true @@ -12,50 +14,44 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: from type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: to type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: amount type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: asset type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: memo type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: chainId type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Builds a coin-specific SigningInput (proto object) from a simple transaction. + - \param coin coin type. + - \param from sender of the transaction. + - \param to receiver of the transaction. + - \param amount transaction amount in string + - \param asset optional asset name, like "BNB" + - \param memo optional memo + - \param chainId optional chainId to override default + - \return serialized data of the SigningInput proto object. - name: TWTransactionCompilerPreImageHashes is_public: true is_static: true @@ -64,20 +60,21 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: txInputData type: variant: data - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Obtains pre-signing hashes of a transaction. + - 'We provide a default `PreSigningOutput` in TransactionCompiler.proto. ' + - For some special coins, such as bitcoin, we will create a custom `PreSigningOutput` object in its proto file. + - \param coin coin type. + - \param txInputData The serialized data of a signing input + - \return serialized data of a proto object `PreSigningOutput` includes hash. - name: TWTransactionCompilerCompileWithSignatures is_public: true is_static: true @@ -86,31 +83,62 @@ functions: type: variant: enum value: TWCoinType - is_constant: false is_nullable: false - is_pointer: false - name: txInputData type: variant: data - is_constant: true is_nullable: false - is_pointer: true - name: signatures type: variant: struct value: TWDataVector - is_constant: true is_nullable: false - is_pointer: true - name: publicKeys type: variant: struct value: TWDataVector - is_constant: true is_nullable: false - is_pointer: true return_type: variant: data - is_constant: true is_nullable: false - is_pointer: true + comments: + - Compiles a complete transation with one or more external signatures. + - Puts together from transaction input and provided public keys and signatures. The signatures must match the hashes + - returned by TWTransactionCompilerPreImageHashes, in the same order. The publicKeyHash attached + - to the hashes enable identifying the private key needed for signing the hash. + - \param coin coin type. + - \param txInputData The serialized data of a signing input. + - \param signatures signatures to compile, using TWDataVector. + - \param publicKeys public keys for signers to match private keys, using TWDataVector. + - \return serialized data of a proto object `SigningOutput`. +- name: TWTransactionCompilerCompileWithSignaturesAndPubKeyType + is_public: true + is_static: true + params: + - name: coinType + type: + variant: enum + value: TWCoinType + is_nullable: false + - name: txInputData + type: + variant: data + is_nullable: false + - name: signatures + type: + variant: struct + value: TWDataVector + is_nullable: false + - name: publicKeys + type: + variant: struct + value: TWDataVector + is_nullable: false + - name: pubKeyType + type: + variant: enum + value: TWPublicKeyType + is_nullable: false + return_type: + variant: data + is_nullable: false diff --git a/codegen-v2/manifest/TWTronMessageSigner.yaml b/codegen-v2/manifest/TWTronMessageSigner.yaml index 12d9081737e..c940cca2cd8 100644 --- a/codegen-v2/manifest/TWTronMessageSigner.yaml +++ b/codegen-v2/manifest/TWTronMessageSigner.yaml @@ -3,6 +3,10 @@ structs: - name: TWTronMessageSigner is_public: true is_class: false + comments: + - Tron message signing and verification. + - Tron and some other wallets support a message signing & verification format, to create a proof (a signature) + - that someone has access to the private keys of a specific address. functions: - name: TWTronMessageSignerSignMessage is_public: true @@ -12,20 +16,19 @@ functions: type: variant: struct value: TWPrivateKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: string - is_constant: true is_nullable: false - is_pointer: true + comments: + - Sign a message. + - '\param privateKey: the private key used for signing' + - '\param message: A custom message which is input to the signing.' + - \returns the signature, Hex-encoded. On invalid input empty string is returned. Returned object needs to be deleted after use. - name: TWTronMessageSignerVerifyMessage is_public: true is_static: true @@ -34,23 +37,21 @@ functions: type: variant: struct value: TWPublicKey - is_constant: true is_nullable: false - is_pointer: true - name: message type: variant: string - is_constant: true is_nullable: false - is_pointer: true - name: signature type: variant: string - is_constant: true is_nullable: false - is_pointer: true return_type: variant: bool - is_constant: false is_nullable: false - is_pointer: false + comments: + - Verify signature for a message. + - '\param pubKey: pubKey that will verify and recover the message from the signature' + - '\param message: the message signed (without prefix)' + - '\param signature: in Hex-encoded form.' + - \returns false on any invalid input (does not throw), true if the message can be recovered from the signature diff --git a/codegen-v2/src/codegen/kotlin/functions.rs b/codegen-v2/src/codegen/kotlin/functions.rs new file mode 100644 index 00000000000..6b8ed4f29b0 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/functions.rs @@ -0,0 +1,49 @@ +use heck::ToLowerCamelCase; + +use super::{AndroidMainMethod, AndroidMainParam, AndroidMainReturn, KotlinType}; +use crate::codegen::swift::ObjectVariant; +use crate::manifest::FunctionInfo; +use crate::Result; + +pub(super) fn process_android_main_methods( + object: &ObjectVariant, + functions: Vec, +) -> Result<(Vec, Vec)> { + let mut andmai_funcs = vec![]; + let mut skipped_funcs = vec![]; + + for func in functions { + if !func.name.starts_with(object.name()) { + skipped_funcs.push(func); + continue; + } + + let params = func + .params + .into_iter() + .map(|i| AndroidMainParam { + name: i.name, + ty: KotlinType::from(i.ty.variant), + is_nullable: i.ty.is_nullable, + }) + .collect(); + + let pretty_name = func + .name + .strip_prefix(object.name()) + .unwrap() + .to_lower_camel_case(); + + andmai_funcs.push(AndroidMainMethod { + name: pretty_name, + params, + is_static: func.is_static, + return_ty: AndroidMainReturn { + ty: KotlinType::from(func.return_type.variant), + is_nullable: func.return_type.is_nullable, + }, + }); + } + + Ok((andmai_funcs, skipped_funcs)) +} diff --git a/codegen-v2/src/codegen/kotlin/inits.rs b/codegen-v2/src/codegen/kotlin/inits.rs new file mode 100644 index 00000000000..72df4266d12 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/inits.rs @@ -0,0 +1,57 @@ +use crate::manifest::InitInfo; +use crate::Result; +// TODO: Move this to `crate::codegen`. +use super::{AndroidMainInit, AndroidMainParam, KotlinType}; +use crate::codegen::swift::ObjectVariant; +use heck::ToLowerCamelCase; + +pub(super) fn process_android_main_inits( + object: &ObjectVariant, + inits: Vec, +) -> Result<(Vec, Vec)> { + let mut andmain_inits = vec![]; + let mut skipped_inits = vec![]; + + for init in inits { + if !init.name.starts_with(object.name()) { + skipped_inits.push(init); + continue; + } + + let mut params = Vec::with_capacity(init.params.len()); + for param in init.params { + params.push(AndroidMainParam { + name: param.name, + ty: KotlinType::from(param.ty.variant), + is_nullable: param.ty.is_nullable, + }); + } + + // Prepepare parameter list to be passed on to the call function. + let param_names = params + .iter() + .map(|p| p.name.as_str()) + .collect::>() + .join(","); + + let pretty_name = init + .name + .strip_prefix(object.name()) + // Panicing implies bug, checked at the start of the loop. + .unwrap() + .to_lower_camel_case(); + + let return_call = format!("{pretty_name}({param_names})"); + + andmain_inits.push(AndroidMainInit { + name: pretty_name, + params, + is_nullable: init.is_nullable, + // Creates a constructor return value such as: + // `... : this(createWithData(data, string))` + return_call, + }); + } + + Ok((andmain_inits, skipped_inits)) +} diff --git a/codegen-v2/src/codegen/kotlin/mod.rs b/codegen-v2/src/codegen/kotlin/mod.rs new file mode 100644 index 00000000000..786fe6a45d3 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/mod.rs @@ -0,0 +1,60 @@ +use crate::manifest::TypeVariant; +use std::fmt::Display; + +mod functions; +mod inits; +mod primitives_android_main; +mod primitives_common_main; +mod primitives_ios_main; +mod properties; +mod render; + +// Re-exports +pub use self::primitives_android_main::*; +pub use self::primitives_common_main::*; +pub use self::primitives_ios_main::*; +pub use self::render::{generate_android_main_types, render_to_strings, RenderIntput}; + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct KotlinType(String); + +impl Display for KotlinType { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(f, "{}", self.0) + } +} + +/// Convert the `TypeVariant` into the appropriate Swift type. +impl From for KotlinType { + fn from(value: TypeVariant) -> Self { + let res = match value { + TypeVariant::Void => "Void".to_string(), + TypeVariant::Bool => "Boolean".to_string(), + TypeVariant::Char => "Char".to_string(), + TypeVariant::ShortInt => "Short".to_string(), + TypeVariant::Int => "Int".to_string(), + TypeVariant::UnsignedInt => "UInt".to_string(), + TypeVariant::LongInt => "Long".to_string(), + TypeVariant::Float => "Float".to_string(), + TypeVariant::Double => "Double".to_string(), + TypeVariant::SizeT => "Int".to_string(), + TypeVariant::Int8T => "Byte".to_string(), + TypeVariant::Int16T => "Short".to_string(), + TypeVariant::Int32T => "Int".to_string(), + TypeVariant::Int64T => "Long".to_string(), + TypeVariant::UInt8T => "UByte".to_string(), + TypeVariant::UInt16T => "UShort".to_string(), + TypeVariant::UInt32T => "UInt".to_string(), + TypeVariant::UInt64T => "ULong".to_string(), + TypeVariant::String => "String".to_string(), + TypeVariant::Data => "ByteArray".to_string(), + TypeVariant::Struct(n) | TypeVariant::Enum(n) => { + // We strip the "TW" prefix for Swift representations of + // structs/enums. + n.strip_prefix("TW").map(|n| n.to_string()).unwrap_or(n) + } + }; + + KotlinType(res) + } +} diff --git a/codegen-v2/src/codegen/kotlin/primitives_android_main.rs b/codegen-v2/src/codegen/kotlin/primitives_android_main.rs new file mode 100644 index 00000000000..017de49559f --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/primitives_android_main.rs @@ -0,0 +1,68 @@ +use super::KotlinType; + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainEnum { + #[serde(rename = "enum_name")] + pub name: String, + pub value_type: KotlinType, + pub add_string_value: bool, + pub variants: Vec, + pub methods: Vec, + pub properties: Vec, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainEnumVariant { + pub name: String, + pub value: String, + pub as_string: Option, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainStruct { + #[serde(rename = "struct_name")] + pub name: String, + pub is_class: bool, + pub inits: Vec, + pub methods: Vec, + pub properties: Vec, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainInit { + pub name: String, + pub params: Vec, + pub is_nullable: bool, + pub return_call: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainMethod { + pub name: String, + pub params: Vec, + pub is_static: bool, + #[serde(rename = "return")] + pub return_ty: AndroidMainReturn, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainProperty { + pub name: String, + #[serde(rename = "return")] + pub return_ty: AndroidMainReturn, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainParam { + pub name: String, + #[serde(rename = "type")] + pub ty: KotlinType, + pub is_nullable: bool, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct AndroidMainReturn { + #[serde(rename = "type")] + pub ty: KotlinType, + pub is_nullable: bool, +} diff --git a/codegen-v2/src/codegen/kotlin/primitives_common_main.rs b/codegen-v2/src/codegen/kotlin/primitives_common_main.rs new file mode 100644 index 00000000000..6294f455d4d --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/primitives_common_main.rs @@ -0,0 +1,19 @@ +use super::{AndroidMainEnum, AndroidMainInit, AndroidMainMethod, AndroidMainProperty}; + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct CommonMainStruct { + #[serde(rename = "struct_name")] + pub name: String, + pub is_class: bool, + pub header_init: Option, + pub inits: Vec, + pub methods: Vec, + pub properties: Vec, +} + +// We just alias those types since they'd basically be identical. We can create +// new types if required. +pub type CommonMainInit = AndroidMainInit; +pub type CommonMainMethod = AndroidMainMethod; +pub type CommonMainProperty = AndroidMainProperty; +pub type CommonMainEnum = AndroidMainEnum; diff --git a/codegen-v2/src/codegen/kotlin/primitives_ios_main.rs b/codegen-v2/src/codegen/kotlin/primitives_ios_main.rs new file mode 100644 index 00000000000..a1fb518f18e --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/primitives_ios_main.rs @@ -0,0 +1,55 @@ +use super::{ + AndroidMainEnum, AndroidMainEnumVariant, AndroidMainMethod, AndroidMainParam, + AndroidMainProperty, AndroidMainReturn, KotlinType, +}; + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct IosMainStruct { + #[serde(rename = "struct_name")] + pub name: String, + pub is_class: bool, + pub inits: Vec, + pub methods: Vec, + pub properties: Vec, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct IosMainInit { + pub params: Vec, + pub param_pass: Vec, + pub c_ffi_name: String, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct IosMainMethod { + pub name: String, + pub params: Vec, + pub is_static: bool, + pub call: String, + #[serde(rename = "return")] + pub return_ty: IosMainReturn, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct IosMainProperty { + pub name: String, + pub call: String, + #[serde(rename = "return")] + pub return_ty: IosMainReturn, +} + +#[derive(Debug, Clone, Serialize, Deserialize)] +pub struct IosMainEnum { + #[serde(rename = "enum_name")] + pub name: String, + pub value_type: KotlinType, + pub add_string_value: bool, + pub variants: Vec, + pub methods: Vec, + pub properties: Vec, +} + +// We just alias those types since they'd basically be identical. We can create +// new types if required. +pub type IosMainParam = AndroidMainParam; +pub type IosMainReturn = AndroidMainReturn; diff --git a/codegen-v2/src/codegen/kotlin/properties.rs b/codegen-v2/src/codegen/kotlin/properties.rs new file mode 100644 index 00000000000..5fdfdea66ed --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/properties.rs @@ -0,0 +1,37 @@ +use crate::manifest::PropertyInfo; +use crate::Result; +// TODO: Move this to `crate::codegen`. +use super::{AndroidMainProperty, AndroidMainReturn, KotlinType}; +use crate::codegen::swift::ObjectVariant; +use heck::ToLowerCamelCase; + +pub(super) fn process_android_main_properties( + object: &ObjectVariant, + properties: Vec, +) -> Result<(Vec, Vec)> { + let mut andman_props = vec![]; + let mut skipped_props = vec![]; + + for prop in properties { + if !prop.name.starts_with(object.name()) { + skipped_props.push(prop); + continue; + } + + let pretty_name = prop + .name + .strip_prefix(object.name()) + .unwrap() + .to_lower_camel_case(); + + andman_props.push(AndroidMainProperty { + name: pretty_name, + return_ty: AndroidMainReturn { + ty: KotlinType::from(prop.return_type.variant), + is_nullable: prop.return_type.is_nullable, + }, + }); + } + + Ok((andman_props, skipped_props)) +} diff --git a/codegen-v2/src/codegen/kotlin/render.rs b/codegen-v2/src/codegen/kotlin/render.rs new file mode 100644 index 00000000000..76f9ccdcf11 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/render.rs @@ -0,0 +1,330 @@ +use super::{ + AndroidMainEnum, AndroidMainEnumVariant, AndroidMainStruct, CommonMainEnum, CommonMainStruct, + IosMainEnum, IosMainInit, IosMainMethod, IosMainProperty, IosMainStruct, KotlinType, +}; +use crate::codegen::kotlin::functions::process_android_main_methods; +use crate::codegen::kotlin::inits::process_android_main_inits; +use crate::codegen::kotlin::properties::process_android_main_properties; +use crate::codegen::swift::ObjectVariant; +use crate::manifest::FileInfo; +use crate::Result; +use handlebars::Handlebars; + +pub fn pretty_name(name: String) -> String { + name.replace("_", "").replace("TW", "").replace("Proto", "") +} + +/// Convenience wrapper for setting copyright year when generating bindings. +// TODO: Unify with Swift. +#[derive(Debug, Clone, Serialize)] +pub struct WithYear<'a, T> { + pub current_year: u64, + #[serde(flatten)] + pub data: &'a T, +} + +pub struct RenderIntput<'a> { + pub file_info: FileInfo, + pub android_main_struct: &'a str, + pub android_main_enum: &'a str, + pub common_main_struct: &'a str, + pub common_main_enum: &'a str, + pub ios_main_struct: &'a str, + pub ios_main_enum: &'a str, +} + +// TODO: Rename +#[derive(Debug, Clone, Default)] +pub struct GeneratedPlatformTypes { + pub android_main: GeneratedTypes, + pub common_main: GeneratedTypes, + pub ios_main: GeneratedTypes, +} + +#[derive(Debug, Clone)] +pub struct GeneratedTypes { + pub structs: Vec, + pub enums: Vec, +} + +impl Default for GeneratedTypes { + fn default() -> Self { + GeneratedTypes { + structs: vec![], + enums: vec![], + } + } +} + +#[derive(Debug, Clone, Default)] +pub struct GeneratedMultiplatformStrings { + pub android_main: GeneratedStrings, + pub common_main: GeneratedStrings, + pub ios_main: GeneratedStrings, +} + +#[derive(Debug, Clone, Default)] +pub struct GeneratedStrings { + pub structs: Vec<(String, String)>, + pub enums: Vec<(String, String)>, +} + +pub fn render_to_strings<'a>(input: RenderIntput<'a>) -> Result { + // The current year for the copyright header in the generated bindings. + let current_year = crate::current_year(); + // Convert the name into an appropriate format. + let pretty_file_name = pretty_name(input.file_info.name.clone()); + + let mut engine = Handlebars::new(); + engine.set_strict_mode(true); + + engine.register_partial("android_main_struct", input.android_main_struct)?; + engine.register_partial("android_main_enum", input.android_main_enum)?; + engine.register_partial("common_main_struct", input.common_main_struct)?; + engine.register_partial("common_main_enum", input.common_main_enum)?; + engine.register_partial("ios_main_struct", input.ios_main_struct)?; + engine.register_partial("ios_main_enum", input.ios_main_enum)?; + + let generated = generate_android_main_types(input.file_info)?; + let mut out_strings = GeneratedMultiplatformStrings::default(); + + for strct in generated.android_main.structs { + let out = engine.render( + "android_main_struct", + &WithYear { + current_year, + data: &strct, + }, + )?; + + out_strings.android_main.structs.push((strct.name, out)); + } + + for enm in generated.android_main.enums { + let out = engine.render( + "android_main_enum", + &WithYear { + current_year, + data: &enm, + }, + )?; + + out_strings.android_main.enums.push((enm.name, out)); + } + + for strct in generated.common_main.structs { + let out = engine.render( + "common_main_struct", + &WithYear { + current_year, + data: &strct, + }, + )?; + + out_strings.common_main.structs.push((strct.name, out)); + } + + for enm in generated.common_main.enums { + let out = engine.render( + "common_main_enum", + &WithYear { + current_year, + data: &enm, + }, + )?; + + out_strings.common_main.enums.push((enm.name, out)); + } + + for strct in generated.ios_main.structs { + let out = engine.render( + "ios_main_struct", + &WithYear { + current_year, + data: &strct, + }, + )?; + + out_strings.ios_main.structs.push((strct.name, out)); + } + + for enm in generated.ios_main.enums { + let out = engine.render( + "ios_main_enum", + &WithYear { + current_year, + data: &enm, + }, + )?; + + out_strings.ios_main.enums.push((enm.name, out)); + } + + Ok(out_strings) +} + +pub fn generate_android_main_types(mut info: FileInfo) -> Result { + let mut outputs = GeneratedPlatformTypes::default(); + + for strct in info.structs { + let obj = ObjectVariant::Struct(&strct.name); + + let (inits, methods, properties); + (inits, info.inits) = process_android_main_inits(&obj, info.inits)?; + (methods, info.functions) = process_android_main_methods(&obj, info.functions)?; + (properties, info.properties) = process_android_main_properties(&obj, info.properties)?; + + // Avoid rendering empty structs. + // TODO: Correct behavior? + if inits.is_empty() && methods.is_empty() && properties.is_empty() { + continue; + } + + // Convert the name into an appropriate format. + let pretty_name = pretty_name(strct.name.clone()); + + outputs.android_main.structs.push(AndroidMainStruct { + name: pretty_name.clone(), + is_class: strct.is_class, + inits: inits.clone(), + methods: methods.clone(), + properties: properties.clone(), + }); + + // If there's only one init, we add it to the struct header and remove + // it from the body. + let (header_init, inits) = if inits.len() == 1 { + (Some(inits[0].clone()), vec![]) + } else { + (None, inits) + }; + + outputs.common_main.structs.push(CommonMainStruct { + name: pretty_name.clone(), + is_class: strct.is_class, + header_init, + inits: inits.clone(), + methods: methods.clone(), + properties: properties.clone(), + }); + + let ios_inits: Vec = inits + .into_iter() + .map(|init| { + // TODO: + IosMainInit { + params: init.params, + param_pass: vec![], + c_ffi_name: "".to_string(), + } + }) + .collect(); + + let ios_methods: Vec = methods + .into_iter() + .map(|method| IosMainMethod { + name: method.name, + params: method.params, + is_static: method.is_static, + call: "TODO".to_string(), + return_ty: method.return_ty, + }) + .collect(); + + let ios_properties: Vec = properties + .into_iter() + .map(|property| IosMainProperty { + name: property.name, + call: "TODO".to_string(), + return_ty: property.return_ty, + }) + .collect(); + + outputs.ios_main.structs.push(IosMainStruct { + name: pretty_name, + is_class: strct.is_class, + inits: ios_inits, + methods: ios_methods, + properties: ios_properties, + }); + } + + for enm in info.enums { + let obj = ObjectVariant::Enum(&enm.name); + + let (methods, properties); + (methods, info.functions) = process_android_main_methods(&obj, info.functions)?; + (properties, info.properties) = process_android_main_properties(&obj, info.properties)?; + + // TODO: Just deprecate `AndroidMainEnumVariant`? + let mut add_string_value = false; + let variants: Vec = enm + .variants + .into_iter() + .map(|mut variant| { + // If `as_string` is present, we add a description function via + // the template. + add_string_value = variant.as_string.is_some(); + + AndroidMainEnumVariant { + name: { + if let Some(f) = variant.name.get_mut(0..1) { + f.make_ascii_uppercase(); + } + variant.name + }, + value: variant.value, + as_string: variant.as_string, + } + }) + .collect(); + + // Convert the name into an appropriate format. + let pretty_name = pretty_name(enm.name.clone()); + + let andmain_enum = AndroidMainEnum { + name: pretty_name.clone(), + value_type: KotlinType::from(enm.value_type.clone()), + add_string_value, + methods: methods.clone(), + properties: properties.clone(), + variants: variants.clone(), + }; + + outputs.android_main.enums.push(andmain_enum.clone()); + outputs.common_main.enums.push(andmain_enum.clone()); + + let ios_methods: Vec = methods + .into_iter() + .map(|method| IosMainMethod { + name: method.name, + params: method.params, + is_static: method.is_static, + call: "TODO".to_string(), + return_ty: method.return_ty, + }) + .collect(); + + let ios_properties: Vec = properties + .into_iter() + .map(|property| IosMainProperty { + name: property.name, + call: "TODO".to_string(), + return_ty: property.return_ty, + }) + .collect(); + + let iosmain_enum = IosMainEnum { + name: pretty_name, + value_type: KotlinType::from(enm.value_type), + add_string_value, + methods: ios_methods, + properties: ios_properties, + variants, + }; + + outputs.ios_main.enums.push(iosmain_enum); + } + + Ok(outputs) +} diff --git a/codegen-v2/src/codegen/kotlin/templates/android_main_enum.hbs b/codegen-v2/src/codegen/kotlin/templates/android_main_enum.hbs new file mode 100644 index 00000000000..bdfea25b805 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/android_main_enum.hbs @@ -0,0 +1,37 @@ +package com.trustwallet.core + +actual enum class {{enum_name}}( + @get:JvmName("value") + val value: {{value_type}}, + {{#if add_string_value}} + actual val stringValue: String, + {{/if}} +) { + {{#each variants}} + {{name}}({{value}}u{{#if ../add_string_value}}, "{{as_string}}"{{/if}}), + {{/each}} + ; + + {{! Methods }} + {{#each methods}} + {{#if is_static}} + @JvmStatic + {{/if}} + @JvmName("{{name}}") + actual external fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + + {{/each}} + {{! Properties }} + {{#each properties}} + actual val {{name}}: {{return.type}}{{#if return.is_nullable}}?{{/if}} + @JvmName("{{name}}") + external get + + {{/each}} + companion object { + @JvmStatic + @JvmName("createFromValue") + fun fromValue(value: {{value_type}}): {{enum_name}}? = + values().firstOrNull { it.value == value } + } +} diff --git a/codegen-v2/src/codegen/kotlin/templates/android_main_struct.hbs b/codegen-v2/src/codegen/kotlin/templates/android_main_struct.hbs new file mode 100644 index 00000000000..e52b91c69bd --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/android_main_struct.hbs @@ -0,0 +1,78 @@ +package com.trustwallet.core + +{{#if is_class}} +actual class {{struct_name}} private constructor ( + private val nativeHandle: Long, +) { +{{else}} +actual object {{struct_name}} { +{{/if}} + {{#if is_class}} + init { + if (nativeHandle == 0L) throw IllegalArgumentException() + } + + {{! Inits }} + {{#each inits}} + {{#if is_nullable}} + @Throws(IllegalArgumentException::class) + {{/if}} + actual constructor({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}) : this({{return_call}})) + + {{/each}} + {{/if}} + {{! Methods }} + {{#each methods}} + {{#if ../is_class}} + {{#unless is_static}} + @JvmName("{{name}}") + actual external fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + + {{/unless}} + {{else}} + {{#if is_static}} + {{! TODO: Is this correct?}} + @JvmStatic + {{/if}} + @JvmName("{{name}}") + actual external fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + + {{/if}} + {{/each}} + {{! Properties }} + {{#each properties}} + actual val {{name}}: {{return.type}}{{#if return.is_nullable}}?{{/if}} + @JvmName("{{name}}") + external get + {{/each}} + {{! Static methods are companion objects in case of class}} + {{#if is_class}} + + actual companion object { + @JvmStatic + @JvmName("createFromNative") + private fun createFromNative(nativeHandle: Long) = {{struct_name}}(nativeHandle) + + {{#each methods}} + {{#if is_static}} + @JvmStatic + @JvmName("{{name}}") + actual external fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + + {{/if}} + {{/each}} + {{! Inits }} + {{#each inits}} + {{#if is_nullable}} + @Throws(IllegalArgumentException::class) + {{/if}} + @JvmStatic + @JvmName("{{name}}") + private external fn {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): Long + {{#unless @last}} + + {{/unless}} + {{/each}} + } + {{/if}} +} diff --git a/codegen-v2/src/codegen/kotlin/templates/common_main_enum.hbs b/codegen-v2/src/codegen/kotlin/templates/common_main_enum.hbs new file mode 100644 index 00000000000..7bfddc52f2c --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/common_main_enum.hbs @@ -0,0 +1,22 @@ +package com.trustwallet.core + +expect enum class {{enum_name}} { + {{#each variants}} + {{name}} + {{/each}} + ; + + {{! Properties }} + {{#each properties}} + val {{name}}: {{return.type}}{{#if return.is_nullable}}?{{/if}} + {{/each}} + {{! Add `stringValue` for variant descriptions}} + {{#if add_string_value}} + val stringValue: String + {{/if}} + + {{! Methods }} + {{#each methods}} + fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + {{/each}} +} diff --git a/codegen-v2/src/codegen/kotlin/templates/common_main_struct.hbs b/codegen-v2/src/codegen/kotlin/templates/common_main_struct.hbs new file mode 100644 index 00000000000..6de37179543 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/common_main_struct.hbs @@ -0,0 +1,44 @@ +package com.trustwallet.core + +expect {{#if is_class}}class{{else}}object{{/if}} {{struct_name}} +{{~#if header_init}} ( +{{#each header_init.params}} + {{name}}: {{type}}{{#if is_nullable}}?{{/if}}, +{{/each}} +) +{{~/if}} { + {{! Inits }} + {{#each inits}} + {{#if is_nullable}} + @Throws(IllegalArgumentException::class) + {{/if}} + constructor({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}) + + {{/each}} + {{! Methods }} + {{#each methods}} + {{#if ../is_class}} + {{#unless is_static}} + fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + {{/unless}} + {{else}} + fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + {{/if}} + {{/each}} + + {{! Properties }} + {{#each properties}} + val {{name}}: {{return.type}}{{#if return.is_nullable}}?{{/if}} + {{/each}} + {{! Static methods are companion objects in case of class}} + {{#if is_class}} + + companion object { + {{#each methods}} + {{#if is_static}} + fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullable}}?{{/if}} + {{/if}} + {{/each}} + } + {{/if}} +} diff --git a/codegen-v2/src/codegen/kotlin/templates/ios_main_enum.hbs b/codegen-v2/src/codegen/kotlin/templates/ios_main_enum.hbs new file mode 100644 index 00000000000..c740a8f1b9d --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/ios_main_enum.hbs @@ -0,0 +1,30 @@ +package com.trustwallet.core + +import com.trustwallet.core.TW{{enum_name}}.* + +actual enum class {{enum_name}}( + val value: TW{{enum_name}}, +) { + {{! Variants}} + {{#each variants}} + {{name}}(TWCoinType{{name}}), + {{/each}} + ; + {{! Properties}} + {{#each properties}} + actual val {{name}}: {{return.type}}{{#if return.is_nullable}}?{{/if}} + get() = {{call}}!! + + {{/each}} + {{! Methods}} + {{#each methods}} + actual fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if is_nullable}}?{{/if}} = + {{call}}!! + + {{/each}} + + companion object { + fun fromValue(value: TW{{enum_name}}: {{enum_name}}? = + values().firstOrNull { it.value == value } + } +} diff --git a/codegen-v2/src/codegen/kotlin/templates/ios_main_struct.hbs b/codegen-v2/src/codegen/kotlin/templates/ios_main_struct.hbs new file mode 100644 index 00000000000..41675668397 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/ios_main_struct.hbs @@ -0,0 +1,32 @@ +package com.trustwallet.core + +{{#if is_class}} +import cnames.structs.TW{{struct_name}} +import kotlinx.cinterop.CPointer + +actual class {{struct_name}} constructor( + val pointer: CPointer, +) { +{{else}} +actual object {{struct_name}} { +{{/if}} + {{! Inites}} + {{#each inits}} + actual constructor({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}) : this( + {{c_ffi_name}}({{#each param_pass}}{{this}}{{#unless @last}}, {{/unless}}{{/each}})!! + ) + + {{/each}} + {{! Methods}} + {{#each methods}} + actual fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if is_nullable}}?{{/if}} = + {{call}}!! + + {{/each}} + {{! Properties}} + {{#each properties}} + actual val {{name}}: {{return.type}}{{#if return.is_nullable}}?{{/if}} + get() = {{call}}!! + + {{/each}} +} diff --git a/codegen-v2/src/codegen/kotlin/templates/jsmain_struct.hbs b/codegen-v2/src/codegen/kotlin/templates/jsmain_struct.hbs new file mode 100644 index 00000000000..c7a9bdf5691 --- /dev/null +++ b/codegen-v2/src/codegen/kotlin/templates/jsmain_struct.hbs @@ -0,0 +1,48 @@ +package com.trustwallet.core + +{{#if is_class}} +actual class {{class_name}} constructor ( + val jsValue: Js{{class_name}}, +) { +{{else}} +actual object {{class_name}} { +{{/if}} + {{! Inits }} + {{#if is_class}} + {{#each inits}} + actual constructor({{#each params}}{{name}}: {{type}}{{#if is_nullable}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.type.is_nullabe}}?{{/if}} = + {{return.call}} + {{#unless @last}} + + {{/unless}} + {{/each}} + {{/if}} + {{! Static methods are companion objects }} + {{#if is_class}} + actual companion object { + {{#each static_methods}} + actual fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullabe}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullabe}}?{{/if}} = + {{return.call}} + {{#unless @last}} + + {{/unless}} + {{/each}} + } + {{else}} + {{#each method}} + actual fun {{name}}({{#each params}}{{name}}: {{type}}{{#if is_nullabe}}?{{/if}}{{#unless @last}}, {{/unless}}{{/each}}): {{return.type}}{{#if return.is_nullabe}}?{{/if}} = + {{return.call}} + {{#unless @last}} + + {{/unless}} + {{/each}} + {{/if}} + {{! Properties }} + {{#each properties}} + actual val {{name}}: {{return.type}} + get() = {{return.call}}} + {{#unless @last}} + + {{/unless}} + {{/each}} +} diff --git a/codegen-v2/src/codegen/mod.rs b/codegen-v2/src/codegen/mod.rs index 52487305973..fc3179044fd 100644 --- a/codegen-v2/src/codegen/mod.rs +++ b/codegen-v2/src/codegen/mod.rs @@ -4,4 +4,5 @@ // terms governing use, modification, and redistribution, is contained in the // file LICENSE at the root of the source code distribution tree. +pub mod kotlin; pub mod swift; diff --git a/codegen-v2/src/codegen/swift/mod.rs b/codegen-v2/src/codegen/swift/mod.rs index bb19c2d7478..65a66f0f4de 100644 --- a/codegen-v2/src/codegen/swift/mod.rs +++ b/codegen-v2/src/codegen/swift/mod.rs @@ -192,13 +192,13 @@ pub struct SwiftOperatorEquality { } /// Used for the individual `process_*` functions. -enum ObjectVariant<'a> { +pub enum ObjectVariant<'a> { Struct(&'a str), Enum(&'a str), } impl<'a> ObjectVariant<'a> { - fn name(&'a self) -> &'a str { + pub fn name(&'a self) -> &'a str { match self { ObjectVariant::Struct(n) | ObjectVariant::Enum(n) => n, } diff --git a/codegen-v2/src/codegen/swift/render.rs b/codegen-v2/src/codegen/swift/render.rs index b7f68716b72..f936498cf3d 100644 --- a/codegen-v2/src/codegen/swift/render.rs +++ b/codegen-v2/src/codegen/swift/render.rs @@ -4,6 +4,8 @@ // terms governing use, modification, and redistribution, is contained in the // file LICENSE at the root of the source code distribution tree. +use heck::ToLowerCamelCase; + use super::{inits::process_deinits, *}; #[derive(Debug, Clone)] @@ -36,7 +38,7 @@ pub struct GeneratedSwiftTypes { /// Convenience wrapper for setting copyright year when generating bindings. #[derive(Debug, Clone, Serialize)] -struct WithYear<'a, T> { +pub struct WithYear<'a, T> { pub current_year: u64, #[serde(flatten)] pub data: &'a T, @@ -64,11 +66,11 @@ pub fn render_to_strings<'a>(input: RenderIntput<'a>) -> Result(input: RenderIntput<'a>) -> Result(input: RenderIntput<'a>) -> Result(input: RenderIntput<'a>) -> Result Result { } SwiftEnumVariant { - name: info.name, + name: { + // TODO: Solve this differently. + if pretty_enum_name == "HDVersion" { + info.name.to_lowercase() + } else { + info.name + } + }, value: info.value, as_string: info.as_string, } diff --git a/codegen-v2/src/main.rs b/codegen-v2/src/main.rs index 1be255b2f20..2d7a0a8e09d 100644 --- a/codegen-v2/src/main.rs +++ b/codegen-v2/src/main.rs @@ -4,7 +4,8 @@ // terms governing use, modification, and redistribution, is contained in the // file LICENSE at the root of the source code distribution tree. -use libparser::codegen::swift::RenderIntput; +use libparser::codegen::kotlin; +use libparser::codegen::swift; use libparser::manifest::parse_dir; use libparser::{Error, Result}; use std::fs::read_to_string; @@ -18,13 +19,82 @@ fn main() -> Result<()> { match args[1].as_str() { "swift" => generate_swift_bindings(), + "kotlin" => generate_kotlin_bindings(), _ => Err(Error::InvalidCommand), } } +fn generate_kotlin_bindings() -> Result<()> { + const IN_DIR: &str = "src/codegen/kotlin/templates"; + const ANDROID_MAIN_OUT_DIR: &str = "bindings/kotlin/androidMain"; + const COMMON_MAIN_OUT_DIR: &str = "bindings/kotlin/commonMain"; + const IOS_MAIN_OUT_DIR: &str = "bindings/kotlin/iosMain"; + + std::fs::create_dir_all(ANDROID_MAIN_OUT_DIR)?; + std::fs::create_dir_all(COMMON_MAIN_OUT_DIR)?; + std::fs::create_dir_all(IOS_MAIN_OUT_DIR)?; + + let am_struct_t = read_to_string(&format!("{IN_DIR}/android_main_struct.hbs"))?; + let am_enum_t = read_to_string(&format!("{IN_DIR}/android_main_enum.hbs"))?; + let cm_struct_t = read_to_string(&format!("{IN_DIR}/common_main_struct.hbs"))?; + let cm_enum_t = read_to_string(&format!("{IN_DIR}/common_main_enum.hbs"))?; + let ios_struct_t = read_to_string(&format!("{IN_DIR}/ios_main_struct.hbs"))?; + let ios_enum_t = read_to_string(&format!("{IN_DIR}/ios_main_enum.hbs"))?; + + // Read the manifest dir, generate bindings for each entry. + let file_infos = parse_dir("manifest/")?; + + for file_info in file_infos { + let input = kotlin::RenderIntput { + file_info, + android_main_struct: &am_struct_t, + android_main_enum: &am_enum_t, + common_main_struct: &cm_struct_t, + common_main_enum: &cm_enum_t, + ios_main_struct: &ios_struct_t, + ios_main_enum: &ios_enum_t, + }; + + let rendered = kotlin::render_to_strings(input)?; + + for (name, rendered) in rendered.android_main.structs { + let file_path = format!("{ANDROID_MAIN_OUT_DIR}/{name}.kt"); + std::fs::write(&file_path, rendered.as_bytes())?; + } + + for (name, rendered) in rendered.android_main.enums { + let file_path = format!("{ANDROID_MAIN_OUT_DIR}/{name}.kt"); + std::fs::write(&file_path, rendered.as_bytes())?; + } + + for (name, rendered) in rendered.common_main.structs { + let file_path = format!("{COMMON_MAIN_OUT_DIR}/{name}.kt"); + std::fs::write(&file_path, rendered.as_bytes())?; + } + + for (name, rendered) in rendered.common_main.enums { + let file_path = format!("{COMMON_MAIN_OUT_DIR}/{name}.kt"); + std::fs::write(&file_path, rendered.as_bytes())?; + } + + for (name, rendered) in rendered.ios_main.structs { + let file_path = format!("{IOS_MAIN_OUT_DIR}/{name}.kt"); + std::fs::write(&file_path, rendered.as_bytes())?; + } + + for (name, rendered) in rendered.ios_main.enums { + let file_path = format!("{IOS_MAIN_OUT_DIR}/{name}.kt"); + std::fs::write(&file_path, rendered.as_bytes())?; + } + } + + println!("Created bindings in directory 'bindings/kotlin/'!"); + Ok(()) +} + fn generate_swift_bindings() -> Result<()> { // NOTE: The paths will be configurable, eventually. - const OUT_DIR: &str = "bindings/"; + const OUT_DIR: &str = "bindings/swift/"; const IN_DIR: &str = "src/codegen/swift/templates"; std::fs::create_dir_all(OUT_DIR)?; @@ -41,7 +111,7 @@ fn generate_swift_bindings() -> Result<()> { let file_infos = parse_dir("manifest/")?; for file_info in file_infos { - let input = RenderIntput { + let input = swift::RenderIntput { file_info, struct_template: &struct_t, enum_template: &enum_t, @@ -52,7 +122,7 @@ fn generate_swift_bindings() -> Result<()> { partial_prop_tempalte: &part_prop_t, }; - let rendered = libparser::codegen::swift::render_to_strings(input)?; + let rendered = swift::render_to_strings(input)?; // Enum declarations go into their own subfolder. if !rendered.enums.is_empty() { @@ -87,6 +157,6 @@ fn generate_swift_bindings() -> Result<()> { } } - println!("Created bindings in directory 'bindings/'!"); + println!("Created bindings in directory 'bindings/swift/'!"); Ok(()) } diff --git a/codegen-v2/src/manifest.rs b/codegen-v2/src/manifest.rs index 91ef48f1392..4948749c984 100644 --- a/codegen-v2/src/manifest.rs +++ b/codegen-v2/src/manifest.rs @@ -24,6 +24,10 @@ pub fn parse_dir>(path: P) -> Result> { } // Read the file into a string + println!( + "Parsing manifest file '{}'", + file_path.as_path().to_string_lossy() + ); let file_contents = fs::read_to_string(&file_path)?; // Deserialize the JSON into a struct @@ -42,9 +46,7 @@ pub fn parse_str(str: &str) -> Result { pub struct TypeInfo { #[serde(flatten)] pub variant: TypeVariant, - pub is_constant: bool, pub is_nullable: bool, - pub is_pointer: bool, } #[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)] diff --git a/codegen-v2/src/tests/kotlin/bindings/class.kt b/codegen-v2/src/tests/kotlin/bindings/class.kt new file mode 100644 index 00000000000..0731aca33e6 --- /dev/null +++ b/codegen-v2/src/tests/kotlin/bindings/class.kt @@ -0,0 +1,25 @@ +package com.trustwallet.core + +actual class MainStruct private constructor ( + private val nativeHandle: Long, +) { + init { + if (nativeHandle == 0L) throw IllegalArgumentException() + } + + actual constructor(string: String) : this(create(string))) + + actual companion object { + @JvmStatic + @JvmName("createFromNative") + private fun createFromNative(nativeHandle: Long) = MainStruct(nativeHandle) + + @JvmStatic + @JvmName("firstFunction") + actual external fun firstFunction(first_param: Int): Bool + } + + actual val firstProperty: Bool + @JvmName("firstProperty") + external get +} diff --git a/codegen-v2/src/tests/kotlin/bindings/enum.kt b/codegen-v2/src/tests/kotlin/bindings/enum.kt new file mode 100644 index 00000000000..204cc193195 --- /dev/null +++ b/codegen-v2/src/tests/kotlin/bindings/enum.kt @@ -0,0 +1,18 @@ +package com.trustwallet.core + +actual enum class MainEnum( + @get:JvmName("value") + val value: UInt, +) { + one(0), + two(1), + three(2), + ; + + companion object { + @JvmStatic + @JvmName("createFromValue") + fun fromValue(value: UInt): MainEnum? = + values().firstOrNull { it.value == value } + } +} diff --git a/codegen-v2/src/tests/kotlin/bindings/enum_descriptions.kt b/codegen-v2/src/tests/kotlin/bindings/enum_descriptions.kt new file mode 100644 index 00000000000..c4178883d28 --- /dev/null +++ b/codegen-v2/src/tests/kotlin/bindings/enum_descriptions.kt @@ -0,0 +1,18 @@ +package com.trustwallet.core + +actual enum class MainEnum( + @get:JvmName("value") + val value: UInt, +) { + one(0, "one_string"), + two(1), + three(2, "three_string"), + ; + + companion object { + @JvmStatic + @JvmName("createFromValue") + fun fromValue(value: UInt): MainEnum? = + values().firstOrNull { it.value == value } + } +} diff --git a/codegen-v2/src/tests/kotlin/bindings/enum_methods.kt b/codegen-v2/src/tests/kotlin/bindings/enum_methods.kt new file mode 100644 index 00000000000..0a2324d1283 --- /dev/null +++ b/codegen-v2/src/tests/kotlin/bindings/enum_methods.kt @@ -0,0 +1,26 @@ +package com.trustwallet.core + +actual enum class MainEnum( + @get:JvmName("value") + val value: UInt, +) { + one(0, "one_string"), + two(1), + three(2, "three_string"), + ; + + @JvmStatic + @JvmName("firstFunction") + actual external fun firstFunction(first_param: Int): Bool + + @JvmStatic + @JvmName("secondFunction") + actual external fun secondFunction(first_param: SomeStruct): Bool + + companion object { + @JvmStatic + @JvmName("createFromValue") + fun fromValue(value: UInt): MainEnum? = + values().firstOrNull { it.value == value } + } +} diff --git a/codegen-v2/src/tests/kotlin/bindings/optional.kt b/codegen-v2/src/tests/kotlin/bindings/optional.kt new file mode 100644 index 00000000000..c1ac55b1d71 --- /dev/null +++ b/codegen-v2/src/tests/kotlin/bindings/optional.kt @@ -0,0 +1,50 @@ +package com.trustwallet.core + +actual class MainStruct private constructor ( + private val nativeHandle: Long, +) { + init { + if (nativeHandle == 0L) throw IllegalArgumentException() + } + + @Throws(IllegalArgumentException::class) + actual constructor(string: String?) : this(create(string))) + + actual companion object { + @JvmStatic + @JvmName("createFromNative") + private fun createFromNative(nativeHandle: Long) = MainStruct(nativeHandle) + + @JvmStatic + @JvmName("withOptionalInt") + actual external fun withOptionalInt(first_param: Int?): Bool? + + @JvmStatic + @JvmName("withOptionalStruct") + actual external fun withOptionalStruct(first_param: SomeStruct?): Bool? + + @JvmStatic + @JvmName("withOptionalString") + actual external fun withOptionalString(first_param: String?): Bool? + + @JvmStatic + @JvmName("withOptionalEnum") + actual external fun withOptionalEnum(first_param: SomeEnum?): Bool? + } + + actual val withOptionalInt: Int? + @JvmName("withOptionalInt") + external get + + actual val withOptionalString: String? + @JvmName("withOptionalString") + external get + + actual val withOptionalStruct: SomeStruct? + @JvmName("withOptionalStruct") + external get + + actual val withOptionalEnum: SomeEnum? + @JvmName("withOptionalEnum") + external get +} diff --git a/codegen-v2/src/tests/kotlin/bindings/struct.kt b/codegen-v2/src/tests/kotlin/bindings/struct.kt new file mode 100644 index 00000000000..65a9612383a --- /dev/null +++ b/codegen-v2/src/tests/kotlin/bindings/struct.kt @@ -0,0 +1,11 @@ +package com.trustwallet.core + +actual object MainStruct { + @JvmStatic + @JvmName("firstFunction") + actual external fun firstFunction(first_param: Int): Bool + + actual val firstProperty: Bool + @JvmName("firstProperty") + external get +} diff --git a/codegen-v2/src/tests/kotlin/mod.rs b/codegen-v2/src/tests/kotlin/mod.rs new file mode 100644 index 00000000000..debb242d93d --- /dev/null +++ b/codegen-v2/src/tests/kotlin/mod.rs @@ -0,0 +1,123 @@ +use crate::codegen::kotlin::{render_to_strings, RenderIntput}; +use crate::manifest::parse_str; + +// Convenience function. +fn create_input(yaml: &str) -> RenderIntput { + let file_info = parse_str(yaml).unwrap(); + + RenderIntput { + file_info, + android_main_struct: include_str!("../../codegen/kotlin/templates/android_main_struct.hbs"), + android_main_enum: include_str!("../../codegen/kotlin/templates/android_main_enum.hbs"), + common_main_struct: include_str!("../../codegen/kotlin/templates/common_main_struct.hbs"), + common_main_enum: include_str!("../../codegen/kotlin/templates/common_main_enum.hbs"), + } +} + +#[test] +// TODO: Check whether non-classes should render properties. +// TODO: Check non-class struct with methods. +fn androidmain_single_struct() { + const INPUT: &str = include_str!("../manifest/struct.input.yaml"); + const EXPECTED: &str = include_str!("bindings/struct.kt"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert_eq!(rendered.android_main.structs.len(), 1); + + // Check generated enum. + let (name, output) = &rendered.android_main.structs[0]; + assert_eq!(name, "MainStruct"); + println!("{output}"); + assert_eq!(output, EXPECTED); +} + +#[test] +fn androidmain_single_class() { + const INPUT: &str = include_str!("../manifest/class.input.yaml"); + const EXPECTED: &str = include_str!("bindings/class.kt"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert_eq!(rendered.android_main.structs.len(), 1); + + // Check generated enum. + let (name, output) = &rendered.android_main.structs[0]; + println!("{output}"); + assert_eq!(name, "MainStruct"); + assert_eq!(output, EXPECTED); +} + +#[test] +fn androidmain_optional() { + const INPUT: &str = include_str!("../manifest/optional.input.yaml"); + const EXPECTED: &str = include_str!("bindings/optional.kt"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert_eq!(rendered.android_main.structs.len(), 1); + + // Check generated enum. + let (name, output) = &rendered.android_main.structs[0]; + println!("{output}"); + assert_eq!(name, "MainStruct"); + assert_eq!(output, EXPECTED); +} + +#[test] +fn androidmain_enum_single() { + const INPUT: &str = include_str!("../manifest/enum.input.yaml"); + const EXPECTED: &str = include_str!("bindings/enum.kt"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert!(rendered.android_main.structs.is_empty()); + assert_eq!(rendered.common_main.enums.len(), 1); + + // Check generated enum. + let (name, output) = &rendered.common_main.enums[0]; + println!("{output}"); + assert_eq!(name, "MainEnum"); + assert_eq!(output, EXPECTED); +} + +#[test] +fn androidmain_enum_with_descriptions() { + const INPUT: &str = include_str!("../manifest/enum_descriptions.yaml"); + const EXPECTED: &str = include_str!("bindings/enum_descriptions.kt"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert!(rendered.android_main.structs.is_empty()); + assert_eq!(rendered.common_main.enums.len(), 1); + + // Check generated enum. + let (name, output) = &rendered.common_main.enums[0]; + println!("{output}"); + assert_eq!(name, "MainEnum"); + assert_eq!(output, EXPECTED); +} + +#[test] +// TODO: Check non-static +fn androidmain_enum_with_methods() { + const INPUT: &str = include_str!("../manifest/enum_extension.input.yaml"); + const EXPECTED: &str = include_str!("bindings/enum_methods.kt"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert!(rendered.android_main.structs.is_empty()); + assert_eq!(rendered.common_main.enums.len(), 1); + + // Check generated enum. + let (name, output) = &rendered.common_main.enums[0]; + println!("{output}"); + assert_eq!(name, "MainEnum"); + assert_eq!(output, EXPECTED); +} diff --git a/codegen-v2/src/tests/samples/class.input.yaml b/codegen-v2/src/tests/manifest/class.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/class.input.yaml rename to codegen-v2/src/tests/manifest/class.input.yaml diff --git a/codegen-v2/src/tests/manifest/enum.input.yaml b/codegen-v2/src/tests/manifest/enum.input.yaml new file mode 100644 index 00000000000..0e587d59ca7 --- /dev/null +++ b/codegen-v2/src/tests/manifest/enum.input.yaml @@ -0,0 +1,13 @@ +name: Enum +enums: +- name: MainEnum + is_public: true + value_type: + variant: u_int32_t + variants: + - name: one + value: 0 + - name: two + value: 1 + - name: three + value: 2 diff --git a/codegen-v2/src/tests/samples/enum.input.yaml b/codegen-v2/src/tests/manifest/enum_descriptions.yaml similarity index 100% rename from codegen-v2/src/tests/samples/enum.input.yaml rename to codegen-v2/src/tests/manifest/enum_descriptions.yaml diff --git a/codegen-v2/src/tests/samples/enum_extension.input.yaml b/codegen-v2/src/tests/manifest/enum_extension.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/enum_extension.input.yaml rename to codegen-v2/src/tests/manifest/enum_extension.input.yaml diff --git a/codegen-v2/src/tests/samples/enum_private.input.yaml b/codegen-v2/src/tests/manifest/enum_private.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/enum_private.input.yaml rename to codegen-v2/src/tests/manifest/enum_private.input.yaml diff --git a/codegen-v2/src/tests/samples/non-associated.input.yaml b/codegen-v2/src/tests/manifest/non-associated.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/non-associated.input.yaml rename to codegen-v2/src/tests/manifest/non-associated.input.yaml diff --git a/codegen-v2/src/tests/samples/optional.input.yaml b/codegen-v2/src/tests/manifest/optional.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/optional.input.yaml rename to codegen-v2/src/tests/manifest/optional.input.yaml diff --git a/codegen-v2/src/tests/samples/private_class.input.yaml b/codegen-v2/src/tests/manifest/private_class.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/private_class.input.yaml rename to codegen-v2/src/tests/manifest/private_class.input.yaml diff --git a/codegen-v2/src/tests/samples/struct.input.yaml b/codegen-v2/src/tests/manifest/struct.input.yaml similarity index 100% rename from codegen-v2/src/tests/samples/struct.input.yaml rename to codegen-v2/src/tests/manifest/struct.input.yaml diff --git a/codegen-v2/src/tests/mod.rs b/codegen-v2/src/tests/mod.rs index 266d3913191..811eeb010fb 100644 --- a/codegen-v2/src/tests/mod.rs +++ b/codegen-v2/src/tests/mod.rs @@ -1,132 +1,2 @@ -// 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. - -use crate::codegen::swift::{render_to_strings, RenderIntput}; -use crate::manifest::parse_str; - -/// Convenience function. -fn create_intput(yaml: &str) -> RenderIntput { - let file_info = parse_str(yaml).unwrap(); - - RenderIntput { - file_info, - struct_template: include_str!("../codegen/swift/templates/struct.hbs"), - enum_template: include_str!("../codegen/swift/templates/enum.hbs"), - extension_template: include_str!("../codegen/swift/templates/extension.hbs"), - proto_template: include_str!("../codegen/swift/templates/proto.hbs"), - partial_init_template: include_str!("../codegen/swift/templates/partial_init.hbs"), - partial_func_tempalte: include_str!("../codegen/swift/templates/partial_func.hbs"), - partial_prop_tempalte: include_str!("../codegen/swift/templates/partial_prop.hbs"), - } -} - -// Convenience function: runs the codegen on the given `input` and compares it -// with the `expected` value. Expects a single, rendered file as output. -fn render_and_compare_struct(input: &str, expected: &str) { - let input = create_intput(input); - let rendered = render_to_strings(input).unwrap(); - - assert_eq!(rendered.structs.len(), 1); - assert!(rendered.enums.is_empty()); - assert!(rendered.extensions.is_empty()); - assert!(rendered.protos.is_empty()); - - let (_name, output) = &rendered.structs[0]; - println!("{output}"); - assert_eq!(output, expected); -} - -fn render_and_compare_enum(input: &str, expected: &str) { - let input = create_intput(input); - let rendered = render_to_strings(input).unwrap(); - - assert!(rendered.structs.is_empty()); - assert_eq!(rendered.enums.len(), 1); - assert!(rendered.extensions.is_empty()); - assert!(rendered.protos.is_empty()); - - let (_name, output) = &rendered.enums[0]; - assert_eq!(output, expected); -} - -#[test] -fn single_struct() { - const INPUT: &str = include_str!("samples/struct.input.yaml"); - const EXPECTED: &str = include_str!("samples/struct.output.swift"); - - render_and_compare_struct(INPUT, EXPECTED); -} - -#[test] -fn single_class() { - const INPUT: &str = include_str!("samples/class.input.yaml"); - const EXPECTED: &str = include_str!("samples/class.output.swift"); - - render_and_compare_struct(INPUT, EXPECTED); -} - -#[test] -fn private() { - const INPUT: &str = include_str!("samples/private_class.input.yaml"); - const EXPECTED: &str = include_str!("samples/private_class.output.swift"); - - render_and_compare_struct(INPUT, EXPECTED); -} - -#[test] -fn optional() { - const INPUT: &str = include_str!("samples/optional.input.yaml"); - const EXPECTED: &str = include_str!("samples/optional.output.swift"); - - render_and_compare_struct(INPUT, EXPECTED); -} - -#[test] -fn enum_with_description() { - const INPUT: &str = include_str!("samples/enum.input.yaml"); - const EXPECTED: &str = include_str!("samples/enum.output.swift"); - - render_and_compare_enum(INPUT, EXPECTED); -} - -#[test] -fn privat_enum_with_description() { - const INPUT: &str = include_str!("samples/enum_private.input.yaml"); - const EXPECTED: &str = include_str!("samples/enum_private.output.swift"); - - render_and_compare_enum(INPUT, EXPECTED); -} - -#[test] -fn enum_with_extension() { - const INPUT: &str = include_str!("samples/enum_extension.input.yaml"); - const EXPECTED_ENUM: &str = include_str!("samples/enum.output.swift"); - const EXPECTED_EXTENSION: &str = include_str!("samples/enum_extension.output.swift"); - - let input = create_intput(INPUT); - let rendered = render_to_strings(input).unwrap(); - - assert!(rendered.structs.is_empty()); - assert_eq!(rendered.enums.len(), 1); - assert_eq!(rendered.extensions.len(), 1); - assert!(rendered.protos.is_empty()); - - // Check generated enum. - let (_name, output) = &rendered.enums[0]; - assert_eq!(output, EXPECTED_ENUM); - - // Check generated extension. - let (_name, output) = &rendered.extensions[0]; - assert_eq!(output, EXPECTED_EXTENSION); -} - -#[test] -fn non_associated() { - const INPUT: &str = include_str!("samples/non-associated.input.yaml"); - const EXPECTED: &str = include_str!("samples/non-associated.output.swift"); - - render_and_compare_struct(INPUT, EXPECTED); -} +mod kotlin; +mod swift; diff --git a/codegen-v2/src/tests/samples/class.output.swift b/codegen-v2/src/tests/swift/bindings/class.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/class.output.swift rename to codegen-v2/src/tests/swift/bindings/class.output.swift diff --git a/codegen-v2/src/tests/samples/enum.output.swift b/codegen-v2/src/tests/swift/bindings/enum_descriptions.swift similarity index 100% rename from codegen-v2/src/tests/samples/enum.output.swift rename to codegen-v2/src/tests/swift/bindings/enum_descriptions.swift diff --git a/codegen-v2/src/tests/samples/enum_extension.output.swift b/codegen-v2/src/tests/swift/bindings/enum_extension.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/enum_extension.output.swift rename to codegen-v2/src/tests/swift/bindings/enum_extension.output.swift diff --git a/codegen-v2/src/tests/samples/enum_private.output.swift b/codegen-v2/src/tests/swift/bindings/enum_private.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/enum_private.output.swift rename to codegen-v2/src/tests/swift/bindings/enum_private.output.swift diff --git a/codegen-v2/src/tests/samples/non-associated.output.swift b/codegen-v2/src/tests/swift/bindings/non-associated.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/non-associated.output.swift rename to codegen-v2/src/tests/swift/bindings/non-associated.output.swift diff --git a/codegen-v2/src/tests/samples/optional.output.swift b/codegen-v2/src/tests/swift/bindings/optional.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/optional.output.swift rename to codegen-v2/src/tests/swift/bindings/optional.output.swift diff --git a/codegen-v2/src/tests/samples/private_class.output.swift b/codegen-v2/src/tests/swift/bindings/private_class.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/private_class.output.swift rename to codegen-v2/src/tests/swift/bindings/private_class.output.swift diff --git a/codegen-v2/src/tests/samples/struct.output.swift b/codegen-v2/src/tests/swift/bindings/struct.output.swift similarity index 100% rename from codegen-v2/src/tests/samples/struct.output.swift rename to codegen-v2/src/tests/swift/bindings/struct.output.swift diff --git a/codegen-v2/src/tests/swift/mod.rs b/codegen-v2/src/tests/swift/mod.rs new file mode 100644 index 00000000000..c9d7d49cf9a --- /dev/null +++ b/codegen-v2/src/tests/swift/mod.rs @@ -0,0 +1,132 @@ +// 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. + +use crate::codegen::swift::{render_to_strings, RenderIntput}; +use crate::manifest::parse_str; + +/// Convenience function. +fn create_input(yaml: &str) -> RenderIntput { + let file_info = parse_str(yaml).unwrap(); + + RenderIntput { + file_info, + struct_template: include_str!("../../codegen/swift/templates/struct.hbs"), + enum_template: include_str!("../../codegen/swift/templates/enum.hbs"), + extension_template: include_str!("../../codegen/swift/templates/extension.hbs"), + proto_template: include_str!("../../codegen/swift/templates/proto.hbs"), + partial_init_template: include_str!("../../codegen/swift/templates/partial_init.hbs"), + partial_func_tempalte: include_str!("../../codegen/swift/templates/partial_func.hbs"), + partial_prop_tempalte: include_str!("../../codegen/swift/templates/partial_prop.hbs"), + } +} + +// Convenience function: runs the codegen on the given `input` and compares it +// with the `expected` value. Expects a single, rendered file as output. +fn render_and_compare_struct(input: &str, expected: &str) { + let input = create_input(input); + let rendered = render_to_strings(input).unwrap(); + + assert_eq!(rendered.structs.len(), 1); + assert!(rendered.enums.is_empty()); + assert!(rendered.extensions.is_empty()); + assert!(rendered.protos.is_empty()); + + let (_name, output) = &rendered.structs[0]; + println!("{output}"); + assert_eq!(output, expected); +} + +fn render_and_compare_enum(input: &str, expected: &str) { + let input = create_input(input); + let rendered = render_to_strings(input).unwrap(); + + assert!(rendered.structs.is_empty()); + assert_eq!(rendered.enums.len(), 1); + assert!(rendered.extensions.is_empty()); + assert!(rendered.protos.is_empty()); + + let (_name, output) = &rendered.enums[0]; + assert_eq!(output, expected); +} + +#[test] +fn single_struct() { + const INPUT: &str = include_str!("../manifest/struct.input.yaml"); + const EXPECTED: &str = include_str!("bindings/struct.output.swift"); + + render_and_compare_struct(INPUT, EXPECTED); +} + +#[test] +fn single_class() { + const INPUT: &str = include_str!("../manifest/class.input.yaml"); + const EXPECTED: &str = include_str!("bindings/class.output.swift"); + + render_and_compare_struct(INPUT, EXPECTED); +} + +#[test] +fn private() { + const INPUT: &str = include_str!("../manifest/private_class.input.yaml"); + const EXPECTED: &str = include_str!("bindings/private_class.output.swift"); + + render_and_compare_struct(INPUT, EXPECTED); +} + +#[test] +fn optional() { + const INPUT: &str = include_str!("../manifest/optional.input.yaml"); + const EXPECTED: &str = include_str!("bindings/optional.output.swift"); + + render_and_compare_struct(INPUT, EXPECTED); +} + +#[test] +fn enum_with_description() { + const INPUT: &str = include_str!("../manifest/enum_descriptions.yaml"); + const EXPECTED: &str = include_str!("bindings/enum_descriptions.swift"); + + render_and_compare_enum(INPUT, EXPECTED); +} + +#[test] +fn privat_enum_with_description() { + const INPUT: &str = include_str!("../manifest/enum_private.input.yaml"); + const EXPECTED: &str = include_str!("bindings/enum_private.output.swift"); + + render_and_compare_enum(INPUT, EXPECTED); +} + +#[test] +fn enum_with_extension() { + const INPUT: &str = include_str!("../manifest/enum_extension.input.yaml"); + const EXPECTED_ENUM: &str = include_str!("bindings/enum_descriptions.swift"); + const EXPECTED_EXTENSION: &str = include_str!("bindings/enum_extension.output.swift"); + + let input = create_input(INPUT); + let rendered = render_to_strings(input).unwrap(); + + assert!(rendered.structs.is_empty()); + assert_eq!(rendered.enums.len(), 1); + assert_eq!(rendered.extensions.len(), 1); + assert!(rendered.protos.is_empty()); + + // Check generated enum. + let (_name, output) = &rendered.enums[0]; + assert_eq!(output, EXPECTED_ENUM); + + // Check generated extension. + let (_name, output) = &rendered.extensions[0]; + assert_eq!(output, EXPECTED_EXTENSION); +} + +#[test] +fn non_associated() { + const INPUT: &str = include_str!("../manifest/non-associated.input.yaml"); + const EXPECTED: &str = include_str!("bindings/non-associated.output.swift"); + + render_and_compare_struct(INPUT, EXPECTED); +} diff --git a/tools/generate-files b/tools/generate-files index fce7635c6ed..d3e4da34cd9 100755 --- a/tools/generate-files +++ b/tools/generate-files @@ -52,9 +52,28 @@ codegen/bin/codegen # Generate Swift bindings with codegen-v2. This is a transitionary process # and will eventually deprecate the current codegen/ entirely. cd codegen-v2/ + cargo run -- swift -cp -R bindings/ ../swift/Sources/Generated/ + +rm -rf ../swift/Sources/Generated/ +mkdir -p ../swift/Sources/Generated/ + +cp -R bindings/swift/* ../swift/Sources/Generated/ cp src/codegen/swift/templates/WalletCore.h ../swift/Sources/Generated/ + +cargo run -- kotlin + +rm -rf ../kotlin/wallet-core-kotlin/src/commonMain/generated +rm -rf ../kotlin/wallet-core-kotlin/src/androidMain/generated +rm -rf ../kotlin/wallet-core-kotlin/src/iosMain/generated +mkdir -p ../kotlin/wallet-core-kotlin/src/commonMain/generated/com/trustwallet/core +mkdir -p ../kotlin/wallet-core-kotlin/src/androidMain/generated/com/trustwallet/core +mkdir -p ../kotlin/wallet-core-kotlin/src/iosMain/generated/com/trustwallet/core + +cp -R bindings/kotlin/commonMain/* ../kotlin/wallet-core-kotlin/src/commonMain/generated/com/trustwallet/core +cp -R bindings/kotlin/androidMain/* ../kotlin/wallet-core-kotlin/src/androidMain/generated/com/trustwallet/core +cp -R bindings/kotlin/iosMain/* ../kotlin/wallet-core-kotlin/src/iosMain/generated/com/trustwallet/core + cd .. # Convert doxygen comments to appropriate format