diff --git a/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/tron/TestTronMessageSigner.kt b/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/tron/TestTronMessageSigner.kt new file mode 100644 index 00000000000..23cfb2302d3 --- /dev/null +++ b/android/app/src/androidTest/java/com/trustwallet/core/app/blockchains/tron/TestTronMessageSigner.kt @@ -0,0 +1,27 @@ +package com.trustwallet.core.app.blockchains.tron + +import com.trustwallet.core.app.utils.Numeric +import org.junit.Assert.assertEquals +import org.junit.Assert.assertTrue +import org.junit.Test +import wallet.core.jni.CoinType +import wallet.core.jni.TronMessageSigner +import wallet.core.jni.PrivateKey + +class TestTronMessageSigner { + + init { + System.loadLibrary("TrustWalletCore") + } + + @Test + fun testMessageSignerSignAndVerify() { + val data = Numeric.hexStringToByteArray("75065f100e38d3f3b4c5c4235834ba8216de62272a4f03532c44b31a5734360a") + val privateKey = PrivateKey(data) + val msg = "Hello World" + val signature = TronMessageSigner.signMessage(privateKey, msg) + assertEquals("9bb6d11ec8a6a3fb686a8f55b123e7ec4e9746a26157f6f9e854dd72f5683b450397a7b0a9653865658de8f9243f877539882891bad30c7286c3bf5622b900471b", signature) + val pubKey = privateKey.getPublicKey(CoinType.TRON) + assertTrue(TronMessageSigner.verifyMessage(pubKey, msg, signature)) + } +} diff --git a/include/TrustWalletCore/TWAES.h b/include/TrustWalletCore/TWAES.h index b44041f36f2..383804cedb1 100644 --- a/include/TrustWalletCore/TWAES.h +++ b/include/TrustWalletCore/TWAES.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWAESPaddingMode.h b/include/TrustWalletCore/TWAESPaddingMode.h index 5cfe2103172..b9e7c707950 100644 --- a/include/TrustWalletCore/TWAESPaddingMode.h +++ b/include/TrustWalletCore/TWAESPaddingMode.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWAccount.h b/include/TrustWalletCore/TWAccount.h index 20a11cf7d6f..adb6f8a97e3 100644 --- a/include/TrustWalletCore/TWAccount.h +++ b/include/TrustWalletCore/TWAccount.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWAnyAddress.h b/include/TrustWalletCore/TWAnyAddress.h index 652d4994529..0fe38fa546c 100644 --- a/include/TrustWalletCore/TWAnyAddress.h +++ b/include/TrustWalletCore/TWAnyAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWAnySigner.h b/include/TrustWalletCore/TWAnySigner.h index f3864bcfa83..25cebe5c1a0 100644 --- a/include/TrustWalletCore/TWAnySigner.h +++ b/include/TrustWalletCore/TWAnySigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBase.h b/include/TrustWalletCore/TWBase.h index de300b6779b..f0486654eb7 100644 --- a/include/TrustWalletCore/TWBase.h +++ b/include/TrustWalletCore/TWBase.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBase32.h b/include/TrustWalletCore/TWBase32.h index e65c67e5890..153d348f3a3 100644 --- a/include/TrustWalletCore/TWBase32.h +++ b/include/TrustWalletCore/TWBase32.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBase58.h b/include/TrustWalletCore/TWBase58.h index 6e5dbd30a48..87a3cbe70fd 100644 --- a/include/TrustWalletCore/TWBase58.h +++ b/include/TrustWalletCore/TWBase58.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBase64.h b/include/TrustWalletCore/TWBase64.h index fa1c29173d1..7ca0c37492f 100644 --- a/include/TrustWalletCore/TWBase64.h +++ b/include/TrustWalletCore/TWBase64.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBitcoinAddress.h b/include/TrustWalletCore/TWBitcoinAddress.h index 77ae6bf1d5d..1ef667bf6a4 100644 --- a/include/TrustWalletCore/TWBitcoinAddress.h +++ b/include/TrustWalletCore/TWBitcoinAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBitcoinMessageSigner.h b/include/TrustWalletCore/TWBitcoinMessageSigner.h index 8cfe84f14da..6b09918f3a6 100644 --- a/include/TrustWalletCore/TWBitcoinMessageSigner.h +++ b/include/TrustWalletCore/TWBitcoinMessageSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBitcoinScript.h b/include/TrustWalletCore/TWBitcoinScript.h index c04611ab166..e8a8ba2411f 100644 --- a/include/TrustWalletCore/TWBitcoinScript.h +++ b/include/TrustWalletCore/TWBitcoinScript.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBitcoinSigHashType.h b/include/TrustWalletCore/TWBitcoinSigHashType.h index b2682d67074..c71bde2d480 100644 --- a/include/TrustWalletCore/TWBitcoinSigHashType.h +++ b/include/TrustWalletCore/TWBitcoinSigHashType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWBlockchain.h b/include/TrustWalletCore/TWBlockchain.h index 36daed2499f..ebcdca72d89 100644 --- a/include/TrustWalletCore/TWBlockchain.h +++ b/include/TrustWalletCore/TWBlockchain.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWCardano.h b/include/TrustWalletCore/TWCardano.h index 0def3db33b6..46cca086004 100644 --- a/include/TrustWalletCore/TWCardano.h +++ b/include/TrustWalletCore/TWCardano.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWCoinType.h b/include/TrustWalletCore/TWCoinType.h index 71fea68d60a..d7df9ad4c15 100644 --- a/include/TrustWalletCore/TWCoinType.h +++ b/include/TrustWalletCore/TWCoinType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWCoinTypeConfiguration.h b/include/TrustWalletCore/TWCoinTypeConfiguration.h index 1a04fab57d8..c83db7753e0 100644 --- a/include/TrustWalletCore/TWCoinTypeConfiguration.h +++ b/include/TrustWalletCore/TWCoinTypeConfiguration.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWCurve.h b/include/TrustWalletCore/TWCurve.h index 36f0edbd7f6..f04256c62c2 100644 --- a/include/TrustWalletCore/TWCurve.h +++ b/include/TrustWalletCore/TWCurve.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWData.h b/include/TrustWalletCore/TWData.h index 2eebf174c39..8c498d81cc4 100644 --- a/include/TrustWalletCore/TWData.h +++ b/include/TrustWalletCore/TWData.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWDataVector.h b/include/TrustWalletCore/TWDataVector.h index 6e2e88912d0..3f950635aea 100644 --- a/include/TrustWalletCore/TWDataVector.h +++ b/include/TrustWalletCore/TWDataVector.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWDerivationPath.h b/include/TrustWalletCore/TWDerivationPath.h index 910288f600f..ffc1800090d 100644 --- a/include/TrustWalletCore/TWDerivationPath.h +++ b/include/TrustWalletCore/TWDerivationPath.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWDerivationPathIndex.h b/include/TrustWalletCore/TWDerivationPathIndex.h index 72bd2b8344e..fe7d93ae2c0 100644 --- a/include/TrustWalletCore/TWDerivationPathIndex.h +++ b/include/TrustWalletCore/TWDerivationPathIndex.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWEthereumAbi.h b/include/TrustWalletCore/TWEthereumAbi.h index 5baf7161942..18408f3ebff 100644 --- a/include/TrustWalletCore/TWEthereumAbi.h +++ b/include/TrustWalletCore/TWEthereumAbi.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWEthereumAbiFunction.h b/include/TrustWalletCore/TWEthereumAbiFunction.h index 4034ade5180..d07199a2844 100644 --- a/include/TrustWalletCore/TWEthereumAbiFunction.h +++ b/include/TrustWalletCore/TWEthereumAbiFunction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWEthereumAbiValue.h b/include/TrustWalletCore/TWEthereumAbiValue.h index 9bbf6ce34eb..0af2f1e22ad 100644 --- a/include/TrustWalletCore/TWEthereumAbiValue.h +++ b/include/TrustWalletCore/TWEthereumAbiValue.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWEthereumMessageSigner.h b/include/TrustWalletCore/TWEthereumMessageSigner.h index 5a1db56a516..cf21d8a8ddd 100644 --- a/include/TrustWalletCore/TWEthereumMessageSigner.h +++ b/include/TrustWalletCore/TWEthereumMessageSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWFIOAccount.h b/include/TrustWalletCore/TWFIOAccount.h index 876aabbda7d..a8abca53615 100644 --- a/include/TrustWalletCore/TWFIOAccount.h +++ b/include/TrustWalletCore/TWFIOAccount.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWGroestlcoinAddress.h b/include/TrustWalletCore/TWGroestlcoinAddress.h index b35ce21ee64..e6512db8c0b 100644 --- a/include/TrustWalletCore/TWGroestlcoinAddress.h +++ b/include/TrustWalletCore/TWGroestlcoinAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWHDVersion.h b/include/TrustWalletCore/TWHDVersion.h index dec82a60ebc..1ccf682e61e 100644 --- a/include/TrustWalletCore/TWHDVersion.h +++ b/include/TrustWalletCore/TWHDVersion.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWHDWallet.h b/include/TrustWalletCore/TWHDWallet.h index 84b951ddc4f..c47c28bf066 100644 --- a/include/TrustWalletCore/TWHDWallet.h +++ b/include/TrustWalletCore/TWHDWallet.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWHash.h b/include/TrustWalletCore/TWHash.h index ccdb7d0fb9e..3d9fd6a314f 100644 --- a/include/TrustWalletCore/TWHash.h +++ b/include/TrustWalletCore/TWHash.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWMnemonic.h b/include/TrustWalletCore/TWMnemonic.h index f74b6ad164f..6baa9b1113c 100644 --- a/include/TrustWalletCore/TWMnemonic.h +++ b/include/TrustWalletCore/TWMnemonic.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWNEARAccount.h b/include/TrustWalletCore/TWNEARAccount.h index 73e7662fe34..8daa5365cf9 100644 --- a/include/TrustWalletCore/TWNEARAccount.h +++ b/include/TrustWalletCore/TWNEARAccount.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWNervosAddress.h b/include/TrustWalletCore/TWNervosAddress.h index b12e663aec1..eedceb86f08 100644 --- a/include/TrustWalletCore/TWNervosAddress.h +++ b/include/TrustWalletCore/TWNervosAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWPBKDF2.h b/include/TrustWalletCore/TWPBKDF2.h index a7edcc65380..b7070849dbf 100644 --- a/include/TrustWalletCore/TWPBKDF2.h +++ b/include/TrustWalletCore/TWPBKDF2.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWPrivateKey.h b/include/TrustWalletCore/TWPrivateKey.h index d84a988d79a..020fb2fcc9f 100644 --- a/include/TrustWalletCore/TWPrivateKey.h +++ b/include/TrustWalletCore/TWPrivateKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWPrivateKeyType.h b/include/TrustWalletCore/TWPrivateKeyType.h index 868b5d2dfea..a51aebae791 100644 --- a/include/TrustWalletCore/TWPrivateKeyType.h +++ b/include/TrustWalletCore/TWPrivateKeyType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWPublicKey.h b/include/TrustWalletCore/TWPublicKey.h index d9164855382..326f694d073 100644 --- a/include/TrustWalletCore/TWPublicKey.h +++ b/include/TrustWalletCore/TWPublicKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWPublicKeyType.h b/include/TrustWalletCore/TWPublicKeyType.h index c5ee21c5f74..894292ad5f4 100644 --- a/include/TrustWalletCore/TWPublicKeyType.h +++ b/include/TrustWalletCore/TWPublicKeyType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWPurpose.h b/include/TrustWalletCore/TWPurpose.h index 509b813bbec..142ed4f10c9 100644 --- a/include/TrustWalletCore/TWPurpose.h +++ b/include/TrustWalletCore/TWPurpose.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWRippleXAddress.h b/include/TrustWalletCore/TWRippleXAddress.h index 401b885e554..ff412711003 100644 --- a/include/TrustWalletCore/TWRippleXAddress.h +++ b/include/TrustWalletCore/TWRippleXAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWSS58AddressType.h b/include/TrustWalletCore/TWSS58AddressType.h index b6bf7e50927..846c9d8c60f 100644 --- a/include/TrustWalletCore/TWSS58AddressType.h +++ b/include/TrustWalletCore/TWSS58AddressType.h @@ -1,5 +1,5 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWSegwitAddress.h b/include/TrustWalletCore/TWSegwitAddress.h index 3e106375527..29c81571132 100644 --- a/include/TrustWalletCore/TWSegwitAddress.h +++ b/include/TrustWalletCore/TWSegwitAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWSolanaAddress.h b/include/TrustWalletCore/TWSolanaAddress.h index b8a372155e6..9e9c4ede571 100644 --- a/include/TrustWalletCore/TWSolanaAddress.h +++ b/include/TrustWalletCore/TWSolanaAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStarkExMessageSigner.h b/include/TrustWalletCore/TWStarkExMessageSigner.h index ea012369795..63e0d2eb7cc 100644 --- a/include/TrustWalletCore/TWStarkExMessageSigner.h +++ b/include/TrustWalletCore/TWStarkExMessageSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStarkWare.h b/include/TrustWalletCore/TWStarkWare.h index 593876c16f3..1f767ea6d71 100644 --- a/include/TrustWalletCore/TWStarkWare.h +++ b/include/TrustWalletCore/TWStarkWare.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStellarMemoType.h b/include/TrustWalletCore/TWStellarMemoType.h index ef3f42702e4..812edbf4fda 100644 --- a/include/TrustWalletCore/TWStellarMemoType.h +++ b/include/TrustWalletCore/TWStellarMemoType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStellarPassphrase.h b/include/TrustWalletCore/TWStellarPassphrase.h index 4854a4d3977..d56187244eb 100644 --- a/include/TrustWalletCore/TWStellarPassphrase.h +++ b/include/TrustWalletCore/TWStellarPassphrase.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStellarVersionByte.h b/include/TrustWalletCore/TWStellarVersionByte.h index 4439d1a555a..f2df0f65215 100644 --- a/include/TrustWalletCore/TWStellarVersionByte.h +++ b/include/TrustWalletCore/TWStellarVersionByte.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStoredKey.h b/include/TrustWalletCore/TWStoredKey.h index 7d916be9e91..01efa96e691 100644 --- a/include/TrustWalletCore/TWStoredKey.h +++ b/include/TrustWalletCore/TWStoredKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStoredKeyEncryption.h b/include/TrustWalletCore/TWStoredKeyEncryption.h index b2db9e795e0..856b407157b 100644 --- a/include/TrustWalletCore/TWStoredKeyEncryption.h +++ b/include/TrustWalletCore/TWStoredKeyEncryption.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWStoredKeyEncryptionLevel.h b/include/TrustWalletCore/TWStoredKeyEncryptionLevel.h index 6b0b79476ea..071df20c97f 100644 --- a/include/TrustWalletCore/TWStoredKeyEncryptionLevel.h +++ b/include/TrustWalletCore/TWStoredKeyEncryptionLevel.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWString.h b/include/TrustWalletCore/TWString.h index f02eef86ae3..336b88922f4 100644 --- a/include/TrustWalletCore/TWString.h +++ b/include/TrustWalletCore/TWString.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWTHORChainSwap.h b/include/TrustWalletCore/TWTHORChainSwap.h index 27708cec96f..bcd35a0911e 100644 --- a/include/TrustWalletCore/TWTHORChainSwap.h +++ b/include/TrustWalletCore/TWTHORChainSwap.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWTransactionCompiler.h b/include/TrustWalletCore/TWTransactionCompiler.h index 93e68c65cce..d016b5f2681 100644 --- a/include/TrustWalletCore/TWTransactionCompiler.h +++ b/include/TrustWalletCore/TWTransactionCompiler.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/include/TrustWalletCore/TWTronMessageSigner.h b/include/TrustWalletCore/TWTronMessageSigner.h new file mode 100644 index 00000000000..56f326d49a4 --- /dev/null +++ b/include/TrustWalletCore/TWTronMessageSigner.h @@ -0,0 +1,41 @@ +// Copyright © 2017-2023 Trust Wallet. +// +// This file is part of Trust. The full Trust copyright notice, including +// terms governing use, modification, and redistribution, is contained in the +// file LICENSE at the root of the source code distribution tree. + +#pragma once + +#include "TWBase.h" +#include "TWData.h" +#include "TWString.h" +#include "TWPrivateKey.h" +#include "TWPublicKey.h" + +TW_EXTERN_C_BEGIN + +/// 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. +TW_EXPORT_STRUCT +struct TWTronMessageSigner; + +/// 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. +TW_EXPORT_STATIC_METHOD +TWString* _Nonnull TWTronMessageSignerSignMessage(const struct TWPrivateKey* _Nonnull privateKey, TWString* _Nonnull message); + +/// 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 +TW_EXPORT_STATIC_METHOD +bool TWTronMessageSignerVerifyMessage(const struct TWPublicKey* _Nonnull pubKey, TWString* _Nonnull message, TWString* _Nonnull signature); + +TW_EXTERN_C_END diff --git a/src/Aeternity/Address.cpp b/src/Aeternity/Address.cpp index b95f5bcede3..3ae8774d405 100644 --- a/src/Aeternity/Address.cpp +++ b/src/Aeternity/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Address.h b/src/Aeternity/Address.h index eddaea8b804..8a9be7607a8 100644 --- a/src/Aeternity/Address.h +++ b/src/Aeternity/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Entry.cpp b/src/Aeternity/Entry.cpp index 391a248c057..ff7a17be354 100644 --- a/src/Aeternity/Entry.cpp +++ b/src/Aeternity/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Entry.h b/src/Aeternity/Entry.h index 748cd69b91c..913812c67a6 100644 --- a/src/Aeternity/Entry.h +++ b/src/Aeternity/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Identifiers.h b/src/Aeternity/Identifiers.h index d42acac5d5c..cf9ce851d3e 100644 --- a/src/Aeternity/Identifiers.h +++ b/src/Aeternity/Identifiers.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Signer.cpp b/src/Aeternity/Signer.cpp index a2f314bba4d..ea05ed59875 100644 --- a/src/Aeternity/Signer.cpp +++ b/src/Aeternity/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Signer.h b/src/Aeternity/Signer.h index d356375055a..fd085b2fdb3 100644 --- a/src/Aeternity/Signer.h +++ b/src/Aeternity/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Transaction.cpp b/src/Aeternity/Transaction.cpp index 32690b4cebf..cb104daede2 100644 --- a/src/Aeternity/Transaction.cpp +++ b/src/Aeternity/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aeternity/Transaction.h b/src/Aeternity/Transaction.h index a58db36f651..20efc9d5d79 100644 --- a/src/Aeternity/Transaction.h +++ b/src/Aeternity/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Address.cpp b/src/Aion/Address.cpp index 411a1b97d9e..7490a4a6ad4 100644 --- a/src/Aion/Address.cpp +++ b/src/Aion/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Address.h b/src/Aion/Address.h index 580cf684579..430e5d4762d 100644 --- a/src/Aion/Address.h +++ b/src/Aion/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Entry.cpp b/src/Aion/Entry.cpp index 98f6bfc0f02..73ce5a91e23 100644 --- a/src/Aion/Entry.cpp +++ b/src/Aion/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Entry.h b/src/Aion/Entry.h index 4a3944b39a9..7c46b5a06e7 100644 --- a/src/Aion/Entry.h +++ b/src/Aion/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/RLP.h b/src/Aion/RLP.h index 55330d37a5a..5f0c8a1991c 100644 --- a/src/Aion/RLP.h +++ b/src/Aion/RLP.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Signer.cpp b/src/Aion/Signer.cpp index 01c90385d91..179dc86a898 100644 --- a/src/Aion/Signer.cpp +++ b/src/Aion/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Signer.h b/src/Aion/Signer.h index 76d5e97d36b..4cf833cb2e3 100644 --- a/src/Aion/Signer.h +++ b/src/Aion/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Transaction.cpp b/src/Aion/Transaction.cpp index c108f0d4b37..3cfad0b3d91 100644 --- a/src/Aion/Transaction.cpp +++ b/src/Aion/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Aion/Transaction.h b/src/Aion/Transaction.h index b5e54bc4d85..2eab15d2c87 100644 --- a/src/Aion/Transaction.h +++ b/src/Aion/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Algorand/Address.cpp b/src/Algorand/Address.cpp index b0e4ede7229..417e90ab52a 100644 --- a/src/Algorand/Address.cpp +++ b/src/Algorand/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Algorand/Address.h b/src/Algorand/Address.h index 2928186b9bc..50a700f6f43 100644 --- a/src/Algorand/Address.h +++ b/src/Algorand/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Algorand/AssetTransfer.cpp b/src/Algorand/AssetTransfer.cpp index 3f4c1a4eccd..5e81bef1168 100644 --- a/src/Algorand/AssetTransfer.cpp +++ b/src/Algorand/AssetTransfer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Algorand/AssetTransfer.h b/src/Algorand/AssetTransfer.h index 63b4b51fc86..d3ade766bc8 100644 --- a/src/Algorand/AssetTransfer.h +++ b/src/Algorand/AssetTransfer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Algorand/BaseTransaction.h b/src/Algorand/BaseTransaction.h index 232c5ed2b00..f11b2457f90 100644 --- a/src/Algorand/BaseTransaction.h +++ b/src/Algorand/BaseTransaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Algorand/BinaryCoding.h b/src/Algorand/BinaryCoding.h index ee4220d46b3..3507124c7ea 100644 --- a/src/Algorand/BinaryCoding.h +++ b/src/Algorand/BinaryCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Algorand/Entry.cpp b/src/Algorand/Entry.cpp index 4eaa61977c7..becd692cf6f 100644 --- a/src/Algorand/Entry.cpp +++ b/src/Algorand/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Algorand/Entry.h b/src/Algorand/Entry.h index 0f152c857cb..5f60a8e6849 100644 --- a/src/Algorand/Entry.h +++ b/src/Algorand/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Algorand/OptInAssetTransaction.cpp b/src/Algorand/OptInAssetTransaction.cpp index e62488d48e1..d64367186b4 100644 --- a/src/Algorand/OptInAssetTransaction.cpp +++ b/src/Algorand/OptInAssetTransaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Algorand/OptInAssetTransaction.h b/src/Algorand/OptInAssetTransaction.h index 49d2a219213..57d368719af 100644 --- a/src/Algorand/OptInAssetTransaction.h +++ b/src/Algorand/OptInAssetTransaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Algorand/Signer.cpp b/src/Algorand/Signer.cpp index cfb615def50..bf6cf1f483f 100644 --- a/src/Algorand/Signer.cpp +++ b/src/Algorand/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Algorand/Signer.h b/src/Algorand/Signer.h index 4f8ef6a2730..c25a4487835 100644 --- a/src/Algorand/Signer.h +++ b/src/Algorand/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Algorand/Transfer.cpp b/src/Algorand/Transfer.cpp index dd470ddae22..05ba80e6c0b 100644 --- a/src/Algorand/Transfer.cpp +++ b/src/Algorand/Transfer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Algorand/Transfer.h b/src/Algorand/Transfer.h index 422ae4d2e4d..e7bf48ade79 100644 --- a/src/Algorand/Transfer.h +++ b/src/Algorand/Transfer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/AnyAddress.cpp b/src/AnyAddress.cpp index 6d20e19a15c..7d3c3d303c3 100644 --- a/src/AnyAddress.cpp +++ b/src/AnyAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/AnyAddress.h b/src/AnyAddress.h index 0735fe24ceb..6ae0b432d9b 100644 --- a/src/AnyAddress.h +++ b/src/AnyAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/Address.cpp b/src/Aptos/Address.cpp index 2688e58c279..18242423a9e 100644 --- a/src/Aptos/Address.cpp +++ b/src/Aptos/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // Author: Clement Doumergue // // This file is part of Trust. The full Trust copyright notice, including diff --git a/src/Aptos/Address.h b/src/Aptos/Address.h index 0e372a88e93..d695d8bd952 100644 --- a/src/Aptos/Address.h +++ b/src/Aptos/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // Author: Clement Doumergue // // This file is part of Trust. The full Trust copyright notice, including diff --git a/src/Aptos/Entry.cpp b/src/Aptos/Entry.cpp index 4ecf7f053f6..5d56f793861 100644 --- a/src/Aptos/Entry.cpp +++ b/src/Aptos/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/Entry.h b/src/Aptos/Entry.h index 4f3f722643b..390e8bbc7e3 100644 --- a/src/Aptos/Entry.h +++ b/src/Aptos/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/MoveTypes.cpp b/src/Aptos/MoveTypes.cpp index 884df19ec10..ccde47c9439 100644 --- a/src/Aptos/MoveTypes.cpp +++ b/src/Aptos/MoveTypes.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/MoveTypes.h b/src/Aptos/MoveTypes.h index f9662825921..26dfe1b8477 100644 --- a/src/Aptos/MoveTypes.h +++ b/src/Aptos/MoveTypes.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/Signer.cpp b/src/Aptos/Signer.cpp index 9ee223e5601..2c2e94fe3b2 100644 --- a/src/Aptos/Signer.cpp +++ b/src/Aptos/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/Signer.h b/src/Aptos/Signer.h index ad1f09ffdd8..239941c4347 100644 --- a/src/Aptos/Signer.h +++ b/src/Aptos/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/TransactionBuilder.h b/src/Aptos/TransactionBuilder.h index 20f37a591ff..cc839a0e7fa 100644 --- a/src/Aptos/TransactionBuilder.h +++ b/src/Aptos/TransactionBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/TransactionPayload.cpp b/src/Aptos/TransactionPayload.cpp index b3e587080b5..bb90d667b08 100644 --- a/src/Aptos/TransactionPayload.cpp +++ b/src/Aptos/TransactionPayload.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Aptos/TransactionPayload.h b/src/Aptos/TransactionPayload.h index d6c453f995c..6041fc0ed8d 100644 --- a/src/Aptos/TransactionPayload.h +++ b/src/Aptos/TransactionPayload.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/BCS.cpp b/src/BCS.cpp index 1959ba83079..fb6015cdf1b 100644 --- a/src/BCS.cpp +++ b/src/BCS.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // Created by Clément Doumergue // This file is part of Trust. The full Trust copyright notice, including diff --git a/src/BCS.h b/src/BCS.h index 5d795089649..563c204b8cb 100644 --- a/src/BCS.h +++ b/src/BCS.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // Created by Clément Doumergue // This file is part of Trust. The full Trust copyright notice, including diff --git a/src/Base58.h b/src/Base58.h index 4b58d472a25..50be30d65a1 100644 --- a/src/Base58.h +++ b/src/Base58.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Base58Address.h b/src/Base58Address.h index 6ec9f4e65ac..baba6324910 100644 --- a/src/Base58Address.h +++ b/src/Base58Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Base64.h b/src/Base64.h index eacd9e147a5..3f54148939d 100644 --- a/src/Base64.h +++ b/src/Base64.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bech32.cpp b/src/Bech32.cpp index a309f45c2a2..5cb14b8cbe1 100644 --- a/src/Bech32.cpp +++ b/src/Bech32.cpp @@ -1,5 +1,5 @@ // Copyright © 2017 Pieter Wuille -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bech32.h b/src/Bech32.h index f9f8311a786..fe4d031713c 100644 --- a/src/Bech32.h +++ b/src/Bech32.h @@ -1,5 +1,5 @@ // Copyright © 2017 Pieter Wuille -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bech32Address.cpp b/src/Bech32Address.cpp index da1c7af32a5..efca8a2f5d3 100644 --- a/src/Bech32Address.cpp +++ b/src/Bech32Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bech32Address.h b/src/Bech32Address.h index 23a88d6a23f..42356384fc3 100644 --- a/src/Bech32Address.h +++ b/src/Bech32Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Binance/Address.cpp b/src/Binance/Address.cpp index 67f5bab7559..3f107872a7a 100644 --- a/src/Binance/Address.cpp +++ b/src/Binance/Address.cpp @@ -1,5 +1,5 @@ // Copyright © 2017 Pieter Wuille -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Binance/Address.h b/src/Binance/Address.h index 0735d5db0cf..2dd06526fb5 100644 --- a/src/Binance/Address.h +++ b/src/Binance/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Binance/Entry.cpp b/src/Binance/Entry.cpp index f0e74088833..6d7006255be 100644 --- a/src/Binance/Entry.cpp +++ b/src/Binance/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Binance/Entry.h b/src/Binance/Entry.h index 3bcd1c91c89..f921b085055 100644 --- a/src/Binance/Entry.h +++ b/src/Binance/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Binance/Serialization.cpp b/src/Binance/Serialization.cpp index cdf0b83bb58..580eb6970ac 100644 --- a/src/Binance/Serialization.cpp +++ b/src/Binance/Serialization.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Binance/Serialization.h b/src/Binance/Serialization.h index 9b06682fbec..35ed5b32d63 100644 --- a/src/Binance/Serialization.h +++ b/src/Binance/Serialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Binance/Signer.cpp b/src/Binance/Signer.cpp index 5a06be40181..2f04e18e4e3 100644 --- a/src/Binance/Signer.cpp +++ b/src/Binance/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Binance/Signer.h b/src/Binance/Signer.h index d66b42bf774..0b35b4c36a3 100644 --- a/src/Binance/Signer.h +++ b/src/Binance/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/BinaryCoding.cpp b/src/BinaryCoding.cpp index 51090acc5ea..f8d5dcdfb57 100644 --- a/src/BinaryCoding.cpp +++ b/src/BinaryCoding.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/BinaryCoding.h b/src/BinaryCoding.h index 971189f2af0..661fddff81b 100644 --- a/src/BinaryCoding.h +++ b/src/BinaryCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Address.h b/src/Bitcoin/Address.h index 48ae90a8760..75d3de2ab94 100644 --- a/src/Bitcoin/Address.h +++ b/src/Bitcoin/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Amount.h b/src/Bitcoin/Amount.h index d286003d75f..1cb6065a7ee 100644 --- a/src/Bitcoin/Amount.h +++ b/src/Bitcoin/Amount.h @@ -1,6 +1,6 @@ // Copyright © 2009-2010 Satoshi Nakamoto // Copyright © 2009-2016 The Bitcoin Core developers -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/CashAddress.cpp b/src/Bitcoin/CashAddress.cpp index 86852f0f472..c3a07428716 100644 --- a/src/Bitcoin/CashAddress.cpp +++ b/src/Bitcoin/CashAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/CashAddress.h b/src/Bitcoin/CashAddress.h index 1ad14b9213f..194c874a2b9 100644 --- a/src/Bitcoin/CashAddress.h +++ b/src/Bitcoin/CashAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Entry.cpp b/src/Bitcoin/Entry.cpp index dd40b084e18..94734c3f7be 100644 --- a/src/Bitcoin/Entry.cpp +++ b/src/Bitcoin/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Entry.h b/src/Bitcoin/Entry.h index b3b06d67707..7bcfd19857f 100644 --- a/src/Bitcoin/Entry.h +++ b/src/Bitcoin/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/FeeCalculator.cpp b/src/Bitcoin/FeeCalculator.cpp index ffae2669621..8b0c6eaa191 100644 --- a/src/Bitcoin/FeeCalculator.cpp +++ b/src/Bitcoin/FeeCalculator.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/FeeCalculator.h b/src/Bitcoin/FeeCalculator.h index 49b76b28a75..229964ebc1a 100644 --- a/src/Bitcoin/FeeCalculator.h +++ b/src/Bitcoin/FeeCalculator.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/InputSelector.cpp b/src/Bitcoin/InputSelector.cpp index 9564e67fa20..3fca632c81f 100644 --- a/src/Bitcoin/InputSelector.cpp +++ b/src/Bitcoin/InputSelector.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/InputSelector.h b/src/Bitcoin/InputSelector.h index 73298a69729..001ed8f2213 100644 --- a/src/Bitcoin/InputSelector.h +++ b/src/Bitcoin/InputSelector.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/MessageSigner.cpp b/src/Bitcoin/MessageSigner.cpp index 21f3ca90de7..2557aed24ae 100644 --- a/src/Bitcoin/MessageSigner.cpp +++ b/src/Bitcoin/MessageSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/MessageSigner.h b/src/Bitcoin/MessageSigner.h index 6779bfaf52d..17c4c37fb0f 100644 --- a/src/Bitcoin/MessageSigner.h +++ b/src/Bitcoin/MessageSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/OpCodes.h b/src/Bitcoin/OpCodes.h index dd68248bf1d..1e5cd03726a 100644 --- a/src/Bitcoin/OpCodes.h +++ b/src/Bitcoin/OpCodes.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/OutPoint.cpp b/src/Bitcoin/OutPoint.cpp index 922f23d35de..c4107bb1fc2 100644 --- a/src/Bitcoin/OutPoint.cpp +++ b/src/Bitcoin/OutPoint.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/OutPoint.h b/src/Bitcoin/OutPoint.h index 0abed5a31a1..bbfe148289b 100644 --- a/src/Bitcoin/OutPoint.h +++ b/src/Bitcoin/OutPoint.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Script.cpp b/src/Bitcoin/Script.cpp index 73b1ae3e2e9..2b94835ae72 100644 --- a/src/Bitcoin/Script.cpp +++ b/src/Bitcoin/Script.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Script.h b/src/Bitcoin/Script.h index 6befe4f79b1..4244ed8d552 100644 --- a/src/Bitcoin/Script.h +++ b/src/Bitcoin/Script.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SegwitAddress.cpp b/src/Bitcoin/SegwitAddress.cpp index 4e40ce06ab7..29454b46b7c 100644 --- a/src/Bitcoin/SegwitAddress.cpp +++ b/src/Bitcoin/SegwitAddress.cpp @@ -1,5 +1,5 @@ // Copyright © 2017 Pieter Wuille -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SegwitAddress.h b/src/Bitcoin/SegwitAddress.h index 54803acb7ba..38f6a287fcb 100644 --- a/src/Bitcoin/SegwitAddress.h +++ b/src/Bitcoin/SegwitAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SigHashType.h b/src/Bitcoin/SigHashType.h index 72329e6a477..4ff2221fd22 100644 --- a/src/Bitcoin/SigHashType.h +++ b/src/Bitcoin/SigHashType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SignatureBuilder.cpp b/src/Bitcoin/SignatureBuilder.cpp index fe2bb1f6ac3..0622413f3ec 100644 --- a/src/Bitcoin/SignatureBuilder.cpp +++ b/src/Bitcoin/SignatureBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SignatureBuilder.h b/src/Bitcoin/SignatureBuilder.h index 07ad17f6f4c..4fd0286b0a2 100644 --- a/src/Bitcoin/SignatureBuilder.h +++ b/src/Bitcoin/SignatureBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SignatureVersion.h b/src/Bitcoin/SignatureVersion.h index 73659efb711..6e00aa9c96f 100644 --- a/src/Bitcoin/SignatureVersion.h +++ b/src/Bitcoin/SignatureVersion.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Signer.cpp b/src/Bitcoin/Signer.cpp index ac00533c2a5..58ee1d17127 100644 --- a/src/Bitcoin/Signer.cpp +++ b/src/Bitcoin/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Signer.h b/src/Bitcoin/Signer.h index b990d5b7dd2..4a8b2218c47 100644 --- a/src/Bitcoin/Signer.h +++ b/src/Bitcoin/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SigningInput.cpp b/src/Bitcoin/SigningInput.cpp index a244e62952b..b3d53fb40ca 100644 --- a/src/Bitcoin/SigningInput.cpp +++ b/src/Bitcoin/SigningInput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/SigningInput.h b/src/Bitcoin/SigningInput.h index cc365fd5b49..b30944884d4 100644 --- a/src/Bitcoin/SigningInput.h +++ b/src/Bitcoin/SigningInput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Transaction.cpp b/src/Bitcoin/Transaction.cpp index 152c693d736..b46b4c21687 100644 --- a/src/Bitcoin/Transaction.cpp +++ b/src/Bitcoin/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/Transaction.h b/src/Bitcoin/Transaction.h index b45fa14c6ab..fcfe5ed6bce 100644 --- a/src/Bitcoin/Transaction.h +++ b/src/Bitcoin/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionBuilder.cpp b/src/Bitcoin/TransactionBuilder.cpp index 9e72dee4f5f..1f097edb615 100644 --- a/src/Bitcoin/TransactionBuilder.cpp +++ b/src/Bitcoin/TransactionBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionBuilder.h b/src/Bitcoin/TransactionBuilder.h index caa6bef7b97..d14cff43c50 100644 --- a/src/Bitcoin/TransactionBuilder.h +++ b/src/Bitcoin/TransactionBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionInput.cpp b/src/Bitcoin/TransactionInput.cpp index 7c43f07e0aa..c4ecfce0e53 100644 --- a/src/Bitcoin/TransactionInput.cpp +++ b/src/Bitcoin/TransactionInput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionInput.h b/src/Bitcoin/TransactionInput.h index 8a9b28399ae..1b930354753 100644 --- a/src/Bitcoin/TransactionInput.h +++ b/src/Bitcoin/TransactionInput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionOutput.cpp b/src/Bitcoin/TransactionOutput.cpp index 7f36e02fce7..fb10d324a98 100644 --- a/src/Bitcoin/TransactionOutput.cpp +++ b/src/Bitcoin/TransactionOutput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionOutput.h b/src/Bitcoin/TransactionOutput.h index 0a4ac788218..05738aafb63 100644 --- a/src/Bitcoin/TransactionOutput.h +++ b/src/Bitcoin/TransactionOutput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionPlan.h b/src/Bitcoin/TransactionPlan.h index 1225082d307..3849656bcc9 100644 --- a/src/Bitcoin/TransactionPlan.h +++ b/src/Bitcoin/TransactionPlan.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionSigner.cpp b/src/Bitcoin/TransactionSigner.cpp index c67a4b2de08..e23f5c32f61 100644 --- a/src/Bitcoin/TransactionSigner.cpp +++ b/src/Bitcoin/TransactionSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Bitcoin/TransactionSigner.h b/src/Bitcoin/TransactionSigner.h index f75c88851cb..6af2e3100ec 100644 --- a/src/Bitcoin/TransactionSigner.h +++ b/src/Bitcoin/TransactionSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Bitcoin/UTXO.h b/src/Bitcoin/UTXO.h index 55f534d86b7..239f55c0260 100644 --- a/src/Bitcoin/UTXO.h +++ b/src/Bitcoin/UTXO.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Cardano/AddressV2.cpp b/src/Cardano/AddressV2.cpp index 673f47d6c92..896ceeba8f5 100644 --- a/src/Cardano/AddressV2.cpp +++ b/src/Cardano/AddressV2.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/AddressV2.h b/src/Cardano/AddressV2.h index 929a52356f9..54705dfa739 100644 --- a/src/Cardano/AddressV2.h +++ b/src/Cardano/AddressV2.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Cardano/AddressV3.cpp b/src/Cardano/AddressV3.cpp index 44c34ab0352..d146d08b14e 100644 --- a/src/Cardano/AddressV3.cpp +++ b/src/Cardano/AddressV3.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/AddressV3.h b/src/Cardano/AddressV3.h index f9580812afe..bee1396655b 100644 --- a/src/Cardano/AddressV3.h +++ b/src/Cardano/AddressV3.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/Entry.cpp b/src/Cardano/Entry.cpp index df4c166faae..a5eef847112 100644 --- a/src/Cardano/Entry.cpp +++ b/src/Cardano/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/Entry.h b/src/Cardano/Entry.h index 04b55e259b8..2a4a1d81277 100644 --- a/src/Cardano/Entry.h +++ b/src/Cardano/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Cardano/Signer.cpp b/src/Cardano/Signer.cpp index 103f57f5e92..0e0ed85e895 100644 --- a/src/Cardano/Signer.cpp +++ b/src/Cardano/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/Signer.h b/src/Cardano/Signer.h index 01d538a617f..fd4df36825a 100644 --- a/src/Cardano/Signer.h +++ b/src/Cardano/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/Transaction.cpp b/src/Cardano/Transaction.cpp index da6a4924572..07093c57881 100644 --- a/src/Cardano/Transaction.cpp +++ b/src/Cardano/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cardano/Transaction.h b/src/Cardano/Transaction.h index a8e7e758000..3ee70c294fe 100644 --- a/src/Cardano/Transaction.h +++ b/src/Cardano/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cbor.cpp b/src/Cbor.cpp index 719c173ec83..38c77af5dde 100644 --- a/src/Cbor.cpp +++ b/src/Cbor.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Cbor.h b/src/Cbor.h index 06ab9f3feca..8c85332dc7f 100644 --- a/src/Cbor.h +++ b/src/Cbor.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Coin.h b/src/Coin.h index a4920fe7419..3c2bc45ca89 100644 --- a/src/Coin.h +++ b/src/Coin.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/CoinEntry.cpp b/src/CoinEntry.cpp index e61da49ee62..cc08f2787a7 100644 --- a/src/CoinEntry.cpp +++ b/src/CoinEntry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/CoinEntry.h b/src/CoinEntry.h index 5ecb055ddc6..d27457ca3ad 100644 --- a/src/CoinEntry.h +++ b/src/CoinEntry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cosmos/Address.cpp b/src/Cosmos/Address.cpp index 5cfabf5e553..009d5e97fd1 100644 --- a/src/Cosmos/Address.cpp +++ b/src/Cosmos/Address.cpp @@ -1,5 +1,5 @@ // Copyright © 2017 Pieter Wuille -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Cosmos/Address.h b/src/Cosmos/Address.h index cb629cfa607..16d8d82fa1e 100644 --- a/src/Cosmos/Address.h +++ b/src/Cosmos/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cosmos/Entry.cpp b/src/Cosmos/Entry.cpp index 8f6ee8ada61..5d93b057a87 100644 --- a/src/Cosmos/Entry.cpp +++ b/src/Cosmos/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cosmos/Entry.h b/src/Cosmos/Entry.h index a77f6104b82..f95c48fe334 100644 --- a/src/Cosmos/Entry.h +++ b/src/Cosmos/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Cosmos/JsonSerialization.cpp b/src/Cosmos/JsonSerialization.cpp index bb7e28c98b8..20020731958 100644 --- a/src/Cosmos/JsonSerialization.cpp +++ b/src/Cosmos/JsonSerialization.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cosmos/JsonSerialization.h b/src/Cosmos/JsonSerialization.h index 72212d972f9..714b62a3498 100644 --- a/src/Cosmos/JsonSerialization.h +++ b/src/Cosmos/JsonSerialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Cosmos/ProtobufSerialization.cpp b/src/Cosmos/ProtobufSerialization.cpp index 89eff73b63c..d3baedada6c 100644 --- a/src/Cosmos/ProtobufSerialization.cpp +++ b/src/Cosmos/ProtobufSerialization.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cosmos/ProtobufSerialization.h b/src/Cosmos/ProtobufSerialization.h index 035bb7f2c7e..47e25e84d76 100644 --- a/src/Cosmos/ProtobufSerialization.h +++ b/src/Cosmos/ProtobufSerialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Cosmos/Signer.cpp b/src/Cosmos/Signer.cpp index b8b538ad8f5..4c35170ba9f 100644 --- a/src/Cosmos/Signer.cpp +++ b/src/Cosmos/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Cosmos/Signer.h b/src/Cosmos/Signer.h index 4a3407021e7..e21f368241c 100644 --- a/src/Cosmos/Signer.h +++ b/src/Cosmos/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Crc.cpp b/src/Crc.cpp index 1cbbe6d2696..7b37ec2a37e 100644 --- a/src/Crc.cpp +++ b/src/Crc.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Crc.h b/src/Crc.h index 1180035491b..4c8adaa4a26 100644 --- a/src/Crc.h +++ b/src/Crc.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Data.cpp b/src/Data.cpp index 8eea5816ce5..6495add1db2 100644 --- a/src/Data.cpp +++ b/src/Data.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Data.h b/src/Data.h index 4abfed23abd..c6e58596922 100644 --- a/src/Data.h +++ b/src/Data.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/Address.cpp b/src/Decred/Address.cpp index 4684098982f..203ad0711c2 100644 --- a/src/Decred/Address.cpp +++ b/src/Decred/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/Address.h b/src/Decred/Address.h index fb534ccffc0..e9fa27609cd 100644 --- a/src/Decred/Address.h +++ b/src/Decred/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/Entry.cpp b/src/Decred/Entry.cpp index 778ec5410cc..f2993dd7300 100644 --- a/src/Decred/Entry.cpp +++ b/src/Decred/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/Entry.h b/src/Decred/Entry.h index af3d8ab9784..90c78c3dff2 100644 --- a/src/Decred/Entry.h +++ b/src/Decred/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/OutPoint.cpp b/src/Decred/OutPoint.cpp index e33f39badd4..08830d037aa 100644 --- a/src/Decred/OutPoint.cpp +++ b/src/Decred/OutPoint.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/OutPoint.h b/src/Decred/OutPoint.h index 315d78e693d..69dacea4712 100644 --- a/src/Decred/OutPoint.h +++ b/src/Decred/OutPoint.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/Signer.cpp b/src/Decred/Signer.cpp index 5cae54cb126..363e7a957db 100644 --- a/src/Decred/Signer.cpp +++ b/src/Decred/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/Signer.h b/src/Decred/Signer.h index 170c5e8b818..5f69deb2afc 100644 --- a/src/Decred/Signer.h +++ b/src/Decred/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/Transaction.cpp b/src/Decred/Transaction.cpp index 958a843cd49..df48ffe12d1 100644 --- a/src/Decred/Transaction.cpp +++ b/src/Decred/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/Transaction.h b/src/Decred/Transaction.h index ee2a36fc7d2..f77f1bfc580 100644 --- a/src/Decred/Transaction.h +++ b/src/Decred/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/TransactionBuilder.h b/src/Decred/TransactionBuilder.h index ac81a3e9480..57ceef91b95 100644 --- a/src/Decred/TransactionBuilder.h +++ b/src/Decred/TransactionBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/TransactionInput.cpp b/src/Decred/TransactionInput.cpp index 47308501e2e..d948646900a 100644 --- a/src/Decred/TransactionInput.cpp +++ b/src/Decred/TransactionInput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/TransactionInput.h b/src/Decred/TransactionInput.h index dde3c075055..30629605d4d 100644 --- a/src/Decred/TransactionInput.h +++ b/src/Decred/TransactionInput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Decred/TransactionOutput.cpp b/src/Decred/TransactionOutput.cpp index 1aadfd41d37..8cad8d9fa49 100644 --- a/src/Decred/TransactionOutput.cpp +++ b/src/Decred/TransactionOutput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Decred/TransactionOutput.h b/src/Decred/TransactionOutput.h index 2d9575d4a08..65a51056cb2 100644 --- a/src/Decred/TransactionOutput.h +++ b/src/Decred/TransactionOutput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Defer.h b/src/Defer.h index 744eba85655..93a0c726828 100644 --- a/src/Defer.h +++ b/src/Defer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/DerivationPath.cpp b/src/DerivationPath.cpp index aa7ac40c82d..3705c40d543 100644 --- a/src/DerivationPath.cpp +++ b/src/DerivationPath.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/DerivationPath.h b/src/DerivationPath.h index 6ab0bca83ef..4a2b26a8190 100644 --- a/src/DerivationPath.h +++ b/src/DerivationPath.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Action.cpp b/src/EOS/Action.cpp index e47c40f2fa2..2df8429cfa9 100644 --- a/src/EOS/Action.cpp +++ b/src/EOS/Action.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Action.h b/src/EOS/Action.h index c2ebcb6fa8f..389f8c53d9f 100644 --- a/src/EOS/Action.h +++ b/src/EOS/Action.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Address.cpp b/src/EOS/Address.cpp index 3c5146aa663..65707e7038b 100644 --- a/src/EOS/Address.cpp +++ b/src/EOS/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Address.h b/src/EOS/Address.h index 0749b8244b7..80b783deccb 100644 --- a/src/EOS/Address.h +++ b/src/EOS/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Asset.cpp b/src/EOS/Asset.cpp index e2f246315e1..570089cc6bd 100644 --- a/src/EOS/Asset.cpp +++ b/src/EOS/Asset.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Asset.h b/src/EOS/Asset.h index 58e611a1469..72a4bdffc73 100644 --- a/src/EOS/Asset.h +++ b/src/EOS/Asset.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Entry.cpp b/src/EOS/Entry.cpp index efb9f53be96..84d9acab9eb 100644 --- a/src/EOS/Entry.cpp +++ b/src/EOS/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/EOS/Entry.h b/src/EOS/Entry.h index 49fea13f207..d544cd9a3f0 100644 --- a/src/EOS/Entry.h +++ b/src/EOS/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/KeyType.h b/src/EOS/KeyType.h index 9b7c259e545..ac207f048ba 100644 --- a/src/EOS/KeyType.h +++ b/src/EOS/KeyType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Name.cpp b/src/EOS/Name.cpp index 9cb6805bf87..b386368a765 100644 --- a/src/EOS/Name.cpp +++ b/src/EOS/Name.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Name.h b/src/EOS/Name.h index 6fb75b9e7e4..3fe613d1089 100644 --- a/src/EOS/Name.h +++ b/src/EOS/Name.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/PackedTransaction.cpp b/src/EOS/PackedTransaction.cpp index a1d3e74ea3d..1e354f6c3f4 100644 --- a/src/EOS/PackedTransaction.cpp +++ b/src/EOS/PackedTransaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/PackedTransaction.h b/src/EOS/PackedTransaction.h index f9d6ca337b7..6c3e041db29 100644 --- a/src/EOS/PackedTransaction.h +++ b/src/EOS/PackedTransaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Prefixes.h b/src/EOS/Prefixes.h index b6594c8a147..0a01179da5e 100644 --- a/src/EOS/Prefixes.h +++ b/src/EOS/Prefixes.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Signer.cpp b/src/EOS/Signer.cpp index b01ba0051e9..46ba6468e0d 100644 --- a/src/EOS/Signer.cpp +++ b/src/EOS/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Signer.h b/src/EOS/Signer.h index 95832639489..034dac0f6e9 100644 --- a/src/EOS/Signer.h +++ b/src/EOS/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Transaction.cpp b/src/EOS/Transaction.cpp index 3185fc8bb05..2078529cc20 100644 --- a/src/EOS/Transaction.cpp +++ b/src/EOS/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/EOS/Transaction.h b/src/EOS/Transaction.h index 63a93edad09..174800ec8a8 100644 --- a/src/EOS/Transaction.h +++ b/src/EOS/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Encrypt.cpp b/src/Encrypt.cpp index 9ed2a643eea..d799d6006a1 100644 --- a/src/Encrypt.cpp +++ b/src/Encrypt.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Encrypt.h b/src/Encrypt.h index e024186f653..8870028f2f6 100644 --- a/src/Encrypt.h +++ b/src/Encrypt.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI.h b/src/Ethereum/ABI.h index e0c3a9f1b90..6764769a2da 100644 --- a/src/Ethereum/ABI.h +++ b/src/Ethereum/ABI.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Array.cpp b/src/Ethereum/ABI/Array.cpp index 90071786336..472f5a86e1f 100644 --- a/src/Ethereum/ABI/Array.cpp +++ b/src/Ethereum/ABI/Array.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Array.h b/src/Ethereum/ABI/Array.h index 08138aad6a2..8be902174e6 100644 --- a/src/Ethereum/ABI/Array.h +++ b/src/Ethereum/ABI/Array.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Bytes.cpp b/src/Ethereum/ABI/Bytes.cpp index 0b40d521bb1..cb1277b96f9 100644 --- a/src/Ethereum/ABI/Bytes.cpp +++ b/src/Ethereum/ABI/Bytes.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Bytes.h b/src/Ethereum/ABI/Bytes.h index b823ec2752b..a3695a813b5 100644 --- a/src/Ethereum/ABI/Bytes.h +++ b/src/Ethereum/ABI/Bytes.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Function.cpp b/src/Ethereum/ABI/Function.cpp index 9057d539d74..d249c9e2752 100644 --- a/src/Ethereum/ABI/Function.cpp +++ b/src/Ethereum/ABI/Function.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Function.h b/src/Ethereum/ABI/Function.h index f85af88bdcf..d331ea030f8 100644 --- a/src/Ethereum/ABI/Function.h +++ b/src/Ethereum/ABI/Function.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamAddress.cpp b/src/Ethereum/ABI/ParamAddress.cpp index 2d06aca161e..df29b67763e 100644 --- a/src/Ethereum/ABI/ParamAddress.cpp +++ b/src/Ethereum/ABI/ParamAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamAddress.h b/src/Ethereum/ABI/ParamAddress.h index ea9faef9ed9..38b05bd342c 100644 --- a/src/Ethereum/ABI/ParamAddress.h +++ b/src/Ethereum/ABI/ParamAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamBase.cpp b/src/Ethereum/ABI/ParamBase.cpp index 4fde27f0410..294bb09a452 100644 --- a/src/Ethereum/ABI/ParamBase.cpp +++ b/src/Ethereum/ABI/ParamBase.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamBase.h b/src/Ethereum/ABI/ParamBase.h index 161abdc7c0c..673d4c43047 100644 --- a/src/Ethereum/ABI/ParamBase.h +++ b/src/Ethereum/ABI/ParamBase.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamFactory.cpp b/src/Ethereum/ABI/ParamFactory.cpp index 9a61eb71c1d..cef102441a2 100644 --- a/src/Ethereum/ABI/ParamFactory.cpp +++ b/src/Ethereum/ABI/ParamFactory.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamFactory.h b/src/Ethereum/ABI/ParamFactory.h index 7ccdb948684..abeb490ce05 100644 --- a/src/Ethereum/ABI/ParamFactory.h +++ b/src/Ethereum/ABI/ParamFactory.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamNumber.cpp b/src/Ethereum/ABI/ParamNumber.cpp index 07c05516883..9def217a589 100644 --- a/src/Ethereum/ABI/ParamNumber.cpp +++ b/src/Ethereum/ABI/ParamNumber.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamNumber.h b/src/Ethereum/ABI/ParamNumber.h index 7b9beb3c80c..05e10753b47 100644 --- a/src/Ethereum/ABI/ParamNumber.h +++ b/src/Ethereum/ABI/ParamNumber.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamStruct.cpp b/src/Ethereum/ABI/ParamStruct.cpp index 7910c0db7f5..ac4de7b0ccb 100644 --- a/src/Ethereum/ABI/ParamStruct.cpp +++ b/src/Ethereum/ABI/ParamStruct.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ParamStruct.h b/src/Ethereum/ABI/ParamStruct.h index 816720905dd..c043e588796 100644 --- a/src/Ethereum/ABI/ParamStruct.h +++ b/src/Ethereum/ABI/ParamStruct.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Parameters.cpp b/src/Ethereum/ABI/Parameters.cpp index 3cc66daefd9..b3eeb61ca04 100644 --- a/src/Ethereum/ABI/Parameters.cpp +++ b/src/Ethereum/ABI/Parameters.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Parameters.h b/src/Ethereum/ABI/Parameters.h index ac315235fbe..30aabf3d340 100644 --- a/src/Ethereum/ABI/Parameters.h +++ b/src/Ethereum/ABI/Parameters.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Tuple.cpp b/src/Ethereum/ABI/Tuple.cpp index c674592ff2b..5f36ac33024 100644 --- a/src/Ethereum/ABI/Tuple.cpp +++ b/src/Ethereum/ABI/Tuple.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/Tuple.h b/src/Ethereum/ABI/Tuple.h index 6579f9784f6..6c8df69a789 100644 --- a/src/Ethereum/ABI/Tuple.h +++ b/src/Ethereum/ABI/Tuple.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ValueDecoder.cpp b/src/Ethereum/ABI/ValueDecoder.cpp index 0bf29705d3f..86544101070 100644 --- a/src/Ethereum/ABI/ValueDecoder.cpp +++ b/src/Ethereum/ABI/ValueDecoder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ValueDecoder.h b/src/Ethereum/ABI/ValueDecoder.h index b27a9ecd935..aee43f8655a 100644 --- a/src/Ethereum/ABI/ValueDecoder.h +++ b/src/Ethereum/ABI/ValueDecoder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ValueEncoder.cpp b/src/Ethereum/ABI/ValueEncoder.cpp index d244a5acbf0..fc19239d3e3 100644 --- a/src/Ethereum/ABI/ValueEncoder.cpp +++ b/src/Ethereum/ABI/ValueEncoder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ABI/ValueEncoder.h b/src/Ethereum/ABI/ValueEncoder.h index 8463c7bdbbb..9157003edcd 100644 --- a/src/Ethereum/ABI/ValueEncoder.h +++ b/src/Ethereum/ABI/ValueEncoder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/Address.cpp b/src/Ethereum/Address.cpp index 48d013bde0c..66255adbdf5 100644 --- a/src/Ethereum/Address.cpp +++ b/src/Ethereum/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/Address.h b/src/Ethereum/Address.h index c14a56146f1..df1e77dd224 100644 --- a/src/Ethereum/Address.h +++ b/src/Ethereum/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/AddressChecksum.cpp b/src/Ethereum/AddressChecksum.cpp index da69f905a7e..53a9f229975 100644 --- a/src/Ethereum/AddressChecksum.cpp +++ b/src/Ethereum/AddressChecksum.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/AddressChecksum.h b/src/Ethereum/AddressChecksum.h index 922110c6869..52b6f864784 100644 --- a/src/Ethereum/AddressChecksum.h +++ b/src/Ethereum/AddressChecksum.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/ContractCall.cpp b/src/Ethereum/ContractCall.cpp index 0ae3a65db23..1cd9e76fb85 100644 --- a/src/Ethereum/ContractCall.cpp +++ b/src/Ethereum/ContractCall.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/ContractCall.h b/src/Ethereum/ContractCall.h index ca7b5c44718..d07f11712aa 100644 --- a/src/Ethereum/ContractCall.h +++ b/src/Ethereum/ContractCall.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/EIP2645.cpp b/src/Ethereum/EIP2645.cpp index c5e1bc72f93..ff887abdab2 100644 --- a/src/Ethereum/EIP2645.cpp +++ b/src/Ethereum/EIP2645.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/EIP2645.h b/src/Ethereum/EIP2645.h index 3dd582a4381..3ab0112f77a 100644 --- a/src/Ethereum/EIP2645.h +++ b/src/Ethereum/EIP2645.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/Entry.cpp b/src/Ethereum/Entry.cpp index b862da36606..2baaaea6ebf 100644 --- a/src/Ethereum/Entry.cpp +++ b/src/Ethereum/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/Entry.h b/src/Ethereum/Entry.h index f9a053992c5..a320d1d50be 100644 --- a/src/Ethereum/Entry.h +++ b/src/Ethereum/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ethereum/MessageSigner.cpp b/src/Ethereum/MessageSigner.cpp index 1988cb55b5e..3594fd69564 100644 --- a/src/Ethereum/MessageSigner.cpp +++ b/src/Ethereum/MessageSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/MessageSigner.h b/src/Ethereum/MessageSigner.h index cd82d9f8de6..8997fb66ad8 100644 --- a/src/Ethereum/MessageSigner.h +++ b/src/Ethereum/MessageSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/RLP.cpp b/src/Ethereum/RLP.cpp index 50817bbd467..096a1d152e1 100644 --- a/src/Ethereum/RLP.cpp +++ b/src/Ethereum/RLP.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/RLP.h b/src/Ethereum/RLP.h index c65ecbbc6cb..c0366c023b1 100644 --- a/src/Ethereum/RLP.h +++ b/src/Ethereum/RLP.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/Signer.cpp b/src/Ethereum/Signer.cpp index 13ba33429ae..5692274e820 100644 --- a/src/Ethereum/Signer.cpp +++ b/src/Ethereum/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ethereum/Signer.h b/src/Ethereum/Signer.h index cdf32672ec9..e8addda1935 100644 --- a/src/Ethereum/Signer.h +++ b/src/Ethereum/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/Transaction.cpp b/src/Ethereum/Transaction.cpp index f81415dab3d..fba9673896c 100644 --- a/src/Ethereum/Transaction.cpp +++ b/src/Ethereum/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Ethereum/Transaction.h b/src/Ethereum/Transaction.h index 0cf47190e3d..60729f5e1a5 100644 --- a/src/Ethereum/Transaction.h +++ b/src/Ethereum/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Everscale/Address.cpp b/src/Everscale/Address.cpp index c59331e110e..473bf189aca 100644 --- a/src/Everscale/Address.cpp +++ b/src/Everscale/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Address.h b/src/Everscale/Address.h index 9f76f64e2e4..fd3a6c05046 100644 --- a/src/Everscale/Address.h +++ b/src/Everscale/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/Cell.cpp b/src/Everscale/CommonTON/Cell.cpp index eebd31a5063..38ca0c4e92e 100644 --- a/src/Everscale/CommonTON/Cell.cpp +++ b/src/Everscale/CommonTON/Cell.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/Cell.h b/src/Everscale/CommonTON/Cell.h index 56240993172..892e8dfb19b 100644 --- a/src/Everscale/CommonTON/Cell.h +++ b/src/Everscale/CommonTON/Cell.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/CellBuilder.cpp b/src/Everscale/CommonTON/CellBuilder.cpp index d077b7098ea..afba8e4ba5a 100644 --- a/src/Everscale/CommonTON/CellBuilder.cpp +++ b/src/Everscale/CommonTON/CellBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/CellBuilder.h b/src/Everscale/CommonTON/CellBuilder.h index 596393c7ae5..0944222c925 100644 --- a/src/Everscale/CommonTON/CellBuilder.h +++ b/src/Everscale/CommonTON/CellBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/CellSlice.cpp b/src/Everscale/CommonTON/CellSlice.cpp index 68e5f2af433..ecdf22dbf6f 100644 --- a/src/Everscale/CommonTON/CellSlice.cpp +++ b/src/Everscale/CommonTON/CellSlice.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/CellSlice.h b/src/Everscale/CommonTON/CellSlice.h index b553c6ab670..1409c8a6960 100644 --- a/src/Everscale/CommonTON/CellSlice.h +++ b/src/Everscale/CommonTON/CellSlice.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/Messages.h b/src/Everscale/CommonTON/Messages.h index bd96fe7b731..32cbbb7eaaa 100644 --- a/src/Everscale/CommonTON/Messages.h +++ b/src/Everscale/CommonTON/Messages.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/RawAddress.cpp b/src/Everscale/CommonTON/RawAddress.cpp index 5a673f3eb25..40d24e1d210 100644 --- a/src/Everscale/CommonTON/RawAddress.cpp +++ b/src/Everscale/CommonTON/RawAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/RawAddress.h b/src/Everscale/CommonTON/RawAddress.h index dbca44b11c0..868e19c599d 100644 --- a/src/Everscale/CommonTON/RawAddress.h +++ b/src/Everscale/CommonTON/RawAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/CommonTON/WorkchainType.h b/src/Everscale/CommonTON/WorkchainType.h index 9e1c3fee27e..1fcf9aae19b 100644 --- a/src/Everscale/CommonTON/WorkchainType.h +++ b/src/Everscale/CommonTON/WorkchainType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Entry.cpp b/src/Everscale/Entry.cpp index 68cd990d2f1..8f741bb37bb 100644 --- a/src/Everscale/Entry.cpp +++ b/src/Everscale/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Entry.h b/src/Everscale/Entry.h index c0adfb3fe0a..3cd52dbb5c1 100644 --- a/src/Everscale/Entry.h +++ b/src/Everscale/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Messages.cpp b/src/Everscale/Messages.cpp index 43f48539446..5dab778f085 100644 --- a/src/Everscale/Messages.cpp +++ b/src/Everscale/Messages.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Messages.h b/src/Everscale/Messages.h index c0eb9ca027c..09a5a624337 100644 --- a/src/Everscale/Messages.h +++ b/src/Everscale/Messages.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Signer.cpp b/src/Everscale/Signer.cpp index a76bd35f690..a648bee7ac9 100644 --- a/src/Everscale/Signer.cpp +++ b/src/Everscale/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Signer.h b/src/Everscale/Signer.h index 35cfcd953a0..6a1fe694609 100644 --- a/src/Everscale/Signer.h +++ b/src/Everscale/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Wallet.cpp b/src/Everscale/Wallet.cpp index 0ea085209d2..321494f94ed 100644 --- a/src/Everscale/Wallet.cpp +++ b/src/Everscale/Wallet.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/Wallet.h b/src/Everscale/Wallet.h index 93dd7a4f98a..31060b55737 100644 --- a/src/Everscale/Wallet.h +++ b/src/Everscale/Wallet.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Everscale/WorkchainType.h b/src/Everscale/WorkchainType.h index cd52b72d15e..e5517b9636f 100644 --- a/src/Everscale/WorkchainType.h +++ b/src/Everscale/WorkchainType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/FIO/Action.cpp b/src/FIO/Action.cpp index db6a0c9d536..61cc235991f 100644 --- a/src/FIO/Action.cpp +++ b/src/FIO/Action.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Action.h b/src/FIO/Action.h index 70566cfd7ba..59b2b923510 100644 --- a/src/FIO/Action.h +++ b/src/FIO/Action.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Actor.cpp b/src/FIO/Actor.cpp index f30c351e34f..f151202cf76 100644 --- a/src/FIO/Actor.cpp +++ b/src/FIO/Actor.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/FIO/Actor.h b/src/FIO/Actor.h index 2024d756c05..c3407db7888 100644 --- a/src/FIO/Actor.h +++ b/src/FIO/Actor.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Address.cpp b/src/FIO/Address.cpp index 0c983d6c636..196d9843bc4 100644 --- a/src/FIO/Address.cpp +++ b/src/FIO/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Address.h b/src/FIO/Address.h index 2d00fa70dfa..3510543c826 100644 --- a/src/FIO/Address.h +++ b/src/FIO/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Encryption.cpp b/src/FIO/Encryption.cpp index 0a73a45a022..45b3cb3c0c6 100644 --- a/src/FIO/Encryption.cpp +++ b/src/FIO/Encryption.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Encryption.h b/src/FIO/Encryption.h index e293f3358fd..c2ccf72050a 100644 --- a/src/FIO/Encryption.h +++ b/src/FIO/Encryption.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Entry.cpp b/src/FIO/Entry.cpp index 42111a0848b..db300541532 100644 --- a/src/FIO/Entry.cpp +++ b/src/FIO/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/FIO/Entry.h b/src/FIO/Entry.h index 98f0fab9106..4fa89472acd 100644 --- a/src/FIO/Entry.h +++ b/src/FIO/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/NewFundsRequest.cpp b/src/FIO/NewFundsRequest.cpp index 257003f15f6..4a3c96835b3 100644 --- a/src/FIO/NewFundsRequest.cpp +++ b/src/FIO/NewFundsRequest.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/NewFundsRequest.h b/src/FIO/NewFundsRequest.h index 3b58d2c3a40..1ba41b803a1 100644 --- a/src/FIO/NewFundsRequest.h +++ b/src/FIO/NewFundsRequest.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Signer.cpp b/src/FIO/Signer.cpp index b7d83313b12..1bfce9614be 100644 --- a/src/FIO/Signer.cpp +++ b/src/FIO/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Signer.h b/src/FIO/Signer.h index 7e0800d71d9..97048bff872 100644 --- a/src/FIO/Signer.h +++ b/src/FIO/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Transaction.cpp b/src/FIO/Transaction.cpp index c05e210066d..b38a9135d2e 100644 --- a/src/FIO/Transaction.cpp +++ b/src/FIO/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/Transaction.h b/src/FIO/Transaction.h index 1bfa26369b2..5167155192f 100644 --- a/src/FIO/Transaction.h +++ b/src/FIO/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/TransactionBuilder.cpp b/src/FIO/TransactionBuilder.cpp index 1c5fa2b4d8b..8578d1aceef 100644 --- a/src/FIO/TransactionBuilder.cpp +++ b/src/FIO/TransactionBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/FIO/TransactionBuilder.h b/src/FIO/TransactionBuilder.h index 607e0d48963..44beb42253c 100644 --- a/src/FIO/TransactionBuilder.h +++ b/src/FIO/TransactionBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Filecoin/Address.cpp b/src/Filecoin/Address.cpp index 56fc2b9963b..0d86818d151 100644 --- a/src/Filecoin/Address.cpp +++ b/src/Filecoin/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Filecoin/Address.h b/src/Filecoin/Address.h index cb8909000e3..9270099a850 100644 --- a/src/Filecoin/Address.h +++ b/src/Filecoin/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Filecoin/Entry.cpp b/src/Filecoin/Entry.cpp index 07696a24cb7..61ec3f848c6 100644 --- a/src/Filecoin/Entry.cpp +++ b/src/Filecoin/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Filecoin/Entry.h b/src/Filecoin/Entry.h index 57e9f71f111..3ad1f6e7500 100644 --- a/src/Filecoin/Entry.h +++ b/src/Filecoin/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Filecoin/Signer.cpp b/src/Filecoin/Signer.cpp index 67676a9eeb7..2a80ca569d6 100644 --- a/src/Filecoin/Signer.cpp +++ b/src/Filecoin/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Filecoin/Signer.h b/src/Filecoin/Signer.h index b266e95e120..411d5fd4e5b 100644 --- a/src/Filecoin/Signer.h +++ b/src/Filecoin/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Filecoin/Transaction.cpp b/src/Filecoin/Transaction.cpp index 311f71ecf97..d79efb3ff5e 100644 --- a/src/Filecoin/Transaction.cpp +++ b/src/Filecoin/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Filecoin/Transaction.h b/src/Filecoin/Transaction.h index 6ae7dfa1e99..da2dbba4d36 100644 --- a/src/Filecoin/Transaction.h +++ b/src/Filecoin/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Groestlcoin/Address.cpp b/src/Groestlcoin/Address.cpp index e67c70ab96d..fa7fe68105a 100644 --- a/src/Groestlcoin/Address.cpp +++ b/src/Groestlcoin/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Groestlcoin/Address.h b/src/Groestlcoin/Address.h index d29c37d4e68..a6c8700184e 100644 --- a/src/Groestlcoin/Address.h +++ b/src/Groestlcoin/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Groestlcoin/Entry.cpp b/src/Groestlcoin/Entry.cpp index 4886146bc36..d18e12e96e0 100644 --- a/src/Groestlcoin/Entry.cpp +++ b/src/Groestlcoin/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Groestlcoin/Entry.h b/src/Groestlcoin/Entry.h index 00e97274de9..55c29ca14d2 100644 --- a/src/Groestlcoin/Entry.h +++ b/src/Groestlcoin/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Groestlcoin/Signer.cpp b/src/Groestlcoin/Signer.cpp index 7b87e290ff6..6ae1976dbe2 100644 --- a/src/Groestlcoin/Signer.cpp +++ b/src/Groestlcoin/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Groestlcoin/Signer.h b/src/Groestlcoin/Signer.h index 6b6979105d4..c2e5b8fe808 100644 --- a/src/Groestlcoin/Signer.h +++ b/src/Groestlcoin/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Groestlcoin/Transaction.h b/src/Groestlcoin/Transaction.h index 10e678c7de3..25ebf7f6706 100644 --- a/src/Groestlcoin/Transaction.h +++ b/src/Groestlcoin/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/HDWallet.cpp b/src/HDWallet.cpp index 9972c230291..74d6e4585bd 100644 --- a/src/HDWallet.cpp +++ b/src/HDWallet.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/HDWallet.h b/src/HDWallet.h index 38c928e451b..9ed27ffb8af 100644 --- a/src/HDWallet.h +++ b/src/HDWallet.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Harmony/Address.cpp b/src/Harmony/Address.cpp index e4be72aa81f..d6520def9a3 100644 --- a/src/Harmony/Address.cpp +++ b/src/Harmony/Address.cpp @@ -1,6 +1,6 @@ // Copyright © 2017 Pieter Wuille -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Address.h b/src/Harmony/Address.h index da4748f7a15..43f03ddda34 100644 --- a/src/Harmony/Address.h +++ b/src/Harmony/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Entry.cpp b/src/Harmony/Entry.cpp index ccfd90d67f4..a1ef86e0401 100644 --- a/src/Harmony/Entry.cpp +++ b/src/Harmony/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Entry.h b/src/Harmony/Entry.h index decd33bdaab..1889701384d 100644 --- a/src/Harmony/Entry.h +++ b/src/Harmony/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Signer.cpp b/src/Harmony/Signer.cpp index 1c7d2c4a803..3990f91598a 100644 --- a/src/Harmony/Signer.cpp +++ b/src/Harmony/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Harmony/Signer.h b/src/Harmony/Signer.h index dc0cac9ada9..e914485c78f 100644 --- a/src/Harmony/Signer.h +++ b/src/Harmony/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Staking.cpp b/src/Harmony/Staking.cpp index 7e99697541b..794f68a49cf 100644 --- a/src/Harmony/Staking.cpp +++ b/src/Harmony/Staking.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Staking.h b/src/Harmony/Staking.h index bf08cb0d199..d7a4d8ee8f2 100644 --- a/src/Harmony/Staking.h +++ b/src/Harmony/Staking.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Harmony/Transaction.h b/src/Harmony/Transaction.h index ac43aa253f0..2badc8951c0 100644 --- a/src/Harmony/Transaction.h +++ b/src/Harmony/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Hash.cpp b/src/Hash.cpp index d770fe939ad..b2942166bf0 100644 --- a/src/Hash.cpp +++ b/src/Hash.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hash.h b/src/Hash.h index 7d16544976e..49472b6e578 100644 --- a/src/Hash.h +++ b/src/Hash.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/Address.cpp b/src/Hedera/Address.cpp index c3129a286cb..cab84478d80 100644 --- a/src/Hedera/Address.cpp +++ b/src/Hedera/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/Address.h b/src/Hedera/Address.h index ab29025aea1..426347a919e 100644 --- a/src/Hedera/Address.h +++ b/src/Hedera/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/DER.cpp b/src/Hedera/DER.cpp index 5da801ee061..d02d54cfea2 100644 --- a/src/Hedera/DER.cpp +++ b/src/Hedera/DER.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/DER.h b/src/Hedera/DER.h index 67bf784d71e..d00ac60d759 100644 --- a/src/Hedera/DER.h +++ b/src/Hedera/DER.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/Entry.cpp b/src/Hedera/Entry.cpp index 06691828d7c..7a71b45945e 100644 --- a/src/Hedera/Entry.cpp +++ b/src/Hedera/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/Entry.h b/src/Hedera/Entry.h index ec85355b1c0..1e5c2307252 100644 --- a/src/Hedera/Entry.h +++ b/src/Hedera/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/Signer.cpp b/src/Hedera/Signer.cpp index feb90281317..36d7b3f33a6 100644 --- a/src/Hedera/Signer.cpp +++ b/src/Hedera/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Hedera/Signer.h b/src/Hedera/Signer.h index 19a54e3052a..65a924aae5a 100644 --- a/src/Hedera/Signer.h +++ b/src/Hedera/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/HexCoding.h b/src/HexCoding.h index 927c4661799..074169c85d4 100644 --- a/src/HexCoding.h +++ b/src/HexCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Icon/Address.cpp b/src/Icon/Address.cpp index b8f799f48a6..08ce69a2fa2 100644 --- a/src/Icon/Address.cpp +++ b/src/Icon/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Icon/Address.h b/src/Icon/Address.h index 8c699e91f71..6f58d450dcb 100644 --- a/src/Icon/Address.h +++ b/src/Icon/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Icon/AddressType.h b/src/Icon/AddressType.h index aea709cbabf..a38eeaeacd0 100644 --- a/src/Icon/AddressType.h +++ b/src/Icon/AddressType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Icon/Entry.cpp b/src/Icon/Entry.cpp index 0f5572b8e9a..c5154b04ae0 100644 --- a/src/Icon/Entry.cpp +++ b/src/Icon/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Icon/Entry.h b/src/Icon/Entry.h index 05d155ec177..2044d50a119 100644 --- a/src/Icon/Entry.h +++ b/src/Icon/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Icon/Signer.cpp b/src/Icon/Signer.cpp index b9c290c867e..5e5da66f3c1 100644 --- a/src/Icon/Signer.cpp +++ b/src/Icon/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Icon/Signer.h b/src/Icon/Signer.h index 209757dc00f..d51112a1e0b 100644 --- a/src/Icon/Signer.h +++ b/src/Icon/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/ImmutableX/Constants.h b/src/ImmutableX/Constants.h index f70a3565475..034d548583e 100644 --- a/src/ImmutableX/Constants.h +++ b/src/ImmutableX/Constants.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/ImmutableX/StarkKey.cpp b/src/ImmutableX/StarkKey.cpp index 47767c87d22..514ef07105b 100644 --- a/src/ImmutableX/StarkKey.cpp +++ b/src/ImmutableX/StarkKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/ImmutableX/StarkKey.h b/src/ImmutableX/StarkKey.h index 2bbeab1d7d2..82e3c4eae49 100644 --- a/src/ImmutableX/StarkKey.h +++ b/src/ImmutableX/StarkKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/IoTeX/Address.cpp b/src/IoTeX/Address.cpp index 7aca2f45b63..cb54d8c5731 100644 --- a/src/IoTeX/Address.cpp +++ b/src/IoTeX/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/IoTeX/Address.h b/src/IoTeX/Address.h index 5dbf03b4a39..2cdb7a00e08 100644 --- a/src/IoTeX/Address.h +++ b/src/IoTeX/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/IoTeX/Entry.cpp b/src/IoTeX/Entry.cpp index 560aa3dcca1..314f7bbae8d 100644 --- a/src/IoTeX/Entry.cpp +++ b/src/IoTeX/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/IoTeX/Entry.h b/src/IoTeX/Entry.h index 2a6442749c9..c5f9738511d 100644 --- a/src/IoTeX/Entry.h +++ b/src/IoTeX/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/IoTeX/Signer.cpp b/src/IoTeX/Signer.cpp index 11f4f9d9067..c655105a0a6 100644 --- a/src/IoTeX/Signer.cpp +++ b/src/IoTeX/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/IoTeX/Signer.h b/src/IoTeX/Signer.h index 31fc2c8a15f..191c57f9642 100644 --- a/src/IoTeX/Signer.h +++ b/src/IoTeX/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/IoTeX/Staking.cpp b/src/IoTeX/Staking.cpp index a508c859c1e..5d4eed6fd84 100644 --- a/src/IoTeX/Staking.cpp +++ b/src/IoTeX/Staking.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/IoTeX/Staking.h b/src/IoTeX/Staking.h index 73a5e737473..713b6f2fa4d 100644 --- a/src/IoTeX/Staking.h +++ b/src/IoTeX/Staking.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/KeyPair.h b/src/KeyPair.h index db5627b88b6..e10bf0fa299 100644 --- a/src/KeyPair.h +++ b/src/KeyPair.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Keystore/AESParameters.cpp b/src/Keystore/AESParameters.cpp index 22f0df40697..a1e097ea501 100644 --- a/src/Keystore/AESParameters.cpp +++ b/src/Keystore/AESParameters.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Keystore/AESParameters.h b/src/Keystore/AESParameters.h index 878700782ee..feb5057c38a 100644 --- a/src/Keystore/AESParameters.h +++ b/src/Keystore/AESParameters.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Keystore/Account.cpp b/src/Keystore/Account.cpp index 6c061ce30e7..5278c5acaf2 100644 --- a/src/Keystore/Account.cpp +++ b/src/Keystore/Account.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Keystore/Account.h b/src/Keystore/Account.h index 6c48ec8723f..c941525473f 100644 --- a/src/Keystore/Account.h +++ b/src/Keystore/Account.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Keystore/EncryptionParameters.cpp b/src/Keystore/EncryptionParameters.cpp index 9ea7a4fa6d1..57a60d56346 100644 --- a/src/Keystore/EncryptionParameters.cpp +++ b/src/Keystore/EncryptionParameters.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Keystore/EncryptionParameters.h b/src/Keystore/EncryptionParameters.h index a3e3ac59750..90701aebc21 100644 --- a/src/Keystore/EncryptionParameters.h +++ b/src/Keystore/EncryptionParameters.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Keystore/PBKDF2Parameters.cpp b/src/Keystore/PBKDF2Parameters.cpp index d364184db07..a3d5ba80a15 100644 --- a/src/Keystore/PBKDF2Parameters.cpp +++ b/src/Keystore/PBKDF2Parameters.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Keystore/PBKDF2Parameters.h b/src/Keystore/PBKDF2Parameters.h index 175a5106157..a6a9fe97b8e 100644 --- a/src/Keystore/PBKDF2Parameters.h +++ b/src/Keystore/PBKDF2Parameters.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Keystore/ScryptParameters.cpp b/src/Keystore/ScryptParameters.cpp index cc32e0357a0..0670a6dbed4 100644 --- a/src/Keystore/ScryptParameters.cpp +++ b/src/Keystore/ScryptParameters.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Keystore/ScryptParameters.h b/src/Keystore/ScryptParameters.h index b29faa0e344..4dec0a3c798 100644 --- a/src/Keystore/ScryptParameters.h +++ b/src/Keystore/ScryptParameters.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Keystore/StoredKey.cpp b/src/Keystore/StoredKey.cpp index bc6d9597981..3e35bc7aa9b 100644 --- a/src/Keystore/StoredKey.cpp +++ b/src/Keystore/StoredKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Keystore/StoredKey.h b/src/Keystore/StoredKey.h index 7ff5e071276..d98235ff793 100644 --- a/src/Keystore/StoredKey.h +++ b/src/Keystore/StoredKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Kusama/Address.h b/src/Kusama/Address.h index 9635b6972ca..2e1936bcb72 100644 --- a/src/Kusama/Address.h +++ b/src/Kusama/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Kusama/Entry.cpp b/src/Kusama/Entry.cpp index 987862b4453..a268f0b1a9c 100644 --- a/src/Kusama/Entry.cpp +++ b/src/Kusama/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Kusama/Entry.h b/src/Kusama/Entry.h index 9104e6b514b..d4d8634e9a6 100644 --- a/src/Kusama/Entry.h +++ b/src/Kusama/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Mnemonic.cpp b/src/Mnemonic.cpp index 1ed92d61361..e07181fa610 100644 --- a/src/Mnemonic.cpp +++ b/src/Mnemonic.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/Mnemonic.h b/src/Mnemonic.h index 9071a4d697a..92b7b692fdb 100644 --- a/src/Mnemonic.h +++ b/src/Mnemonic.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/MultiversX/Address.cpp b/src/MultiversX/Address.cpp index eb6b8a574b1..d882248ab4b 100644 --- a/src/MultiversX/Address.cpp +++ b/src/MultiversX/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Address.h b/src/MultiversX/Address.h index 7827cf1244b..d47c56e3f90 100644 --- a/src/MultiversX/Address.h +++ b/src/MultiversX/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Codec.cpp b/src/MultiversX/Codec.cpp index d66fa38e706..c613ddfe763 100644 --- a/src/MultiversX/Codec.cpp +++ b/src/MultiversX/Codec.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/MultiversX/Codec.h b/src/MultiversX/Codec.h index 587f3c70a17..ec9f5511c2c 100644 --- a/src/MultiversX/Codec.h +++ b/src/MultiversX/Codec.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Entry.cpp b/src/MultiversX/Entry.cpp index fef968916f8..f40284e203f 100644 --- a/src/MultiversX/Entry.cpp +++ b/src/MultiversX/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Entry.h b/src/MultiversX/Entry.h index bd5ff2a1409..4ecd848ff19 100644 --- a/src/MultiversX/Entry.h +++ b/src/MultiversX/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/GasEstimator.cpp b/src/MultiversX/GasEstimator.cpp index d57853686ff..14c500c40e5 100644 --- a/src/MultiversX/GasEstimator.cpp +++ b/src/MultiversX/GasEstimator.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/MultiversX/GasEstimator.h b/src/MultiversX/GasEstimator.h index 77f848bd9db..82c0314ed36 100644 --- a/src/MultiversX/GasEstimator.h +++ b/src/MultiversX/GasEstimator.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/NetworkConfig.cpp b/src/MultiversX/NetworkConfig.cpp index 8b71350b48f..fcc5e86030f 100644 --- a/src/MultiversX/NetworkConfig.cpp +++ b/src/MultiversX/NetworkConfig.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/MultiversX/NetworkConfig.h b/src/MultiversX/NetworkConfig.h index 5df96a75a1a..e3bea063c81 100644 --- a/src/MultiversX/NetworkConfig.h +++ b/src/MultiversX/NetworkConfig.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Serialization.cpp b/src/MultiversX/Serialization.cpp index 08566e01e21..6f2fad8fed2 100644 --- a/src/MultiversX/Serialization.cpp +++ b/src/MultiversX/Serialization.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Serialization.h b/src/MultiversX/Serialization.h index 0058df7d38a..9105f822577 100644 --- a/src/MultiversX/Serialization.h +++ b/src/MultiversX/Serialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Signer.cpp b/src/MultiversX/Signer.cpp index a8ec5f20183..a166da1e418 100644 --- a/src/MultiversX/Signer.cpp +++ b/src/MultiversX/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/MultiversX/Signer.h b/src/MultiversX/Signer.h index 57260a34ac6..8f1e416bbd1 100644 --- a/src/MultiversX/Signer.h +++ b/src/MultiversX/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/Transaction.cpp b/src/MultiversX/Transaction.cpp index 92f6db9b403..041d719e067 100644 --- a/src/MultiversX/Transaction.cpp +++ b/src/MultiversX/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/MultiversX/Transaction.h b/src/MultiversX/Transaction.h index e40885b78bc..517082b76db 100644 --- a/src/MultiversX/Transaction.h +++ b/src/MultiversX/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/MultiversX/TransactionFactory.cpp b/src/MultiversX/TransactionFactory.cpp index 58822f03944..5f3049977cc 100644 --- a/src/MultiversX/TransactionFactory.cpp +++ b/src/MultiversX/TransactionFactory.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/MultiversX/TransactionFactory.h b/src/MultiversX/TransactionFactory.h index 5b66df1ecfd..3a34cb7a8da 100644 --- a/src/MultiversX/TransactionFactory.h +++ b/src/MultiversX/TransactionFactory.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Account.cpp b/src/NEAR/Account.cpp index 0bb0bbf42fd..7a68fa709a2 100644 --- a/src/NEAR/Account.cpp +++ b/src/NEAR/Account.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Account.h b/src/NEAR/Account.h index 1b2c090e8e9..1b222843783 100644 --- a/src/NEAR/Account.h +++ b/src/NEAR/Account.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Address.cpp b/src/NEAR/Address.cpp index f9f7a92ecf1..3b90ae13868 100644 --- a/src/NEAR/Address.cpp +++ b/src/NEAR/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Address.h b/src/NEAR/Address.h index 791aa107b9f..470f67c7a74 100644 --- a/src/NEAR/Address.h +++ b/src/NEAR/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Entry.cpp b/src/NEAR/Entry.cpp index 17c60492305..e14b041eed3 100644 --- a/src/NEAR/Entry.cpp +++ b/src/NEAR/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Entry.h b/src/NEAR/Entry.h index 7e1786dc70d..c852e6af7c8 100644 --- a/src/NEAR/Entry.h +++ b/src/NEAR/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Serialization.cpp b/src/NEAR/Serialization.cpp index 4fe8b43d7db..16ec53f02b3 100644 --- a/src/NEAR/Serialization.cpp +++ b/src/NEAR/Serialization.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEAR/Serialization.h b/src/NEAR/Serialization.h index 54a9d7041d9..dbcda14940d 100644 --- a/src/NEAR/Serialization.h +++ b/src/NEAR/Serialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEAR/Signer.cpp b/src/NEAR/Signer.cpp index 65031bce7a2..13eb0c26237 100644 --- a/src/NEAR/Signer.cpp +++ b/src/NEAR/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEAR/Signer.h b/src/NEAR/Signer.h index 5f7fd3a2752..d2e5d852d66 100644 --- a/src/NEAR/Signer.h +++ b/src/NEAR/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Address.cpp b/src/NEO/Address.cpp index bb77c138e8a..e86ff358a29 100644 --- a/src/NEO/Address.cpp +++ b/src/NEO/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Address.h b/src/NEO/Address.h index 993cba859c3..6e2e6cb0aaa 100644 --- a/src/NEO/Address.h +++ b/src/NEO/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/CoinReference.h b/src/NEO/CoinReference.h index 8890f537d3d..8a82c9a836a 100644 --- a/src/NEO/CoinReference.h +++ b/src/NEO/CoinReference.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Constants.h b/src/NEO/Constants.h index 817dc8840cf..a0fd45fd016 100644 --- a/src/NEO/Constants.h +++ b/src/NEO/Constants.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEO/Entry.cpp b/src/NEO/Entry.cpp index fb17923025b..73e41120c9c 100644 --- a/src/NEO/Entry.cpp +++ b/src/NEO/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEO/Entry.h b/src/NEO/Entry.h index d250e9bf494..41f64eced7d 100644 --- a/src/NEO/Entry.h +++ b/src/NEO/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/ISerializable.h b/src/NEO/ISerializable.h index ce2245a643d..364792e1af5 100644 --- a/src/NEO/ISerializable.h +++ b/src/NEO/ISerializable.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/MinerTransaction.h b/src/NEO/MinerTransaction.h index 73ff8daf129..67902a94970 100644 --- a/src/NEO/MinerTransaction.h +++ b/src/NEO/MinerTransaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/OpCode.h b/src/NEO/OpCode.h index 847c5b74fa6..0f5b3514ac2 100644 --- a/src/NEO/OpCode.h +++ b/src/NEO/OpCode.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/ReadData.cpp b/src/NEO/ReadData.cpp index f0889883487..1a40c8d8cd0 100644 --- a/src/NEO/ReadData.cpp +++ b/src/NEO/ReadData.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/ReadData.h b/src/NEO/ReadData.h index fbe297c9ba3..06da2d3df3b 100644 --- a/src/NEO/ReadData.h +++ b/src/NEO/ReadData.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Script.cpp b/src/NEO/Script.cpp index a168dfe74bb..5ae587882ec 100644 --- a/src/NEO/Script.cpp +++ b/src/NEO/Script.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Script.h b/src/NEO/Script.h index 80090432607..33b401b13fd 100644 --- a/src/NEO/Script.h +++ b/src/NEO/Script.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Serializable.h b/src/NEO/Serializable.h index 51ec20edf73..45fcf1b89ca 100644 --- a/src/NEO/Serializable.h +++ b/src/NEO/Serializable.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Signer.cpp b/src/NEO/Signer.cpp index 1824af1b940..d7a12e4c52d 100644 --- a/src/NEO/Signer.cpp +++ b/src/NEO/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEO/Signer.h b/src/NEO/Signer.h index 55c68339ce2..c6b71884b44 100644 --- a/src/NEO/Signer.h +++ b/src/NEO/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Transaction.cpp b/src/NEO/Transaction.cpp index 5108a85e581..76a69899301 100644 --- a/src/NEO/Transaction.cpp +++ b/src/NEO/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEO/Transaction.h b/src/NEO/Transaction.h index 7523995398c..f98b2c38846 100644 --- a/src/NEO/Transaction.h +++ b/src/NEO/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/TransactionAttribute.h b/src/NEO/TransactionAttribute.h index e1ac1235651..3144640c48c 100644 --- a/src/NEO/TransactionAttribute.h +++ b/src/NEO/TransactionAttribute.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/NEO/TransactionAttributeUsage.h b/src/NEO/TransactionAttributeUsage.h index 3cc20ecc4ab..fc0e3f90c6d 100644 --- a/src/NEO/TransactionAttributeUsage.h +++ b/src/NEO/TransactionAttributeUsage.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/TransactionOutput.h b/src/NEO/TransactionOutput.h index cc52b032301..ad9240f0f79 100644 --- a/src/NEO/TransactionOutput.h +++ b/src/NEO/TransactionOutput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/TransactionType.h b/src/NEO/TransactionType.h index a70400a8c26..424e959bc04 100644 --- a/src/NEO/TransactionType.h +++ b/src/NEO/TransactionType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NEO/Witness.h b/src/NEO/Witness.h index 2562bbb7f4e..77025e0c4a9 100644 --- a/src/NEO/Witness.h +++ b/src/NEO/Witness.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/Address.cpp b/src/NULS/Address.cpp index c70065d78bf..631ad898137 100644 --- a/src/NULS/Address.cpp +++ b/src/NULS/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/Address.h b/src/NULS/Address.h index 7134f814be7..ef9c6a7639f 100644 --- a/src/NULS/Address.h +++ b/src/NULS/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/BinaryCoding.h b/src/NULS/BinaryCoding.h index 51de36f5ec9..f7dafced953 100644 --- a/src/NULS/BinaryCoding.h +++ b/src/NULS/BinaryCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/Entry.cpp b/src/NULS/Entry.cpp index 726bb87df27..cf17757b5c1 100644 --- a/src/NULS/Entry.cpp +++ b/src/NULS/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/Entry.h b/src/NULS/Entry.h index 7a295547af5..5a900384ea7 100644 --- a/src/NULS/Entry.h +++ b/src/NULS/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/Signer.cpp b/src/NULS/Signer.cpp index 77b83e6ebae..f90feb882e8 100644 --- a/src/NULS/Signer.cpp +++ b/src/NULS/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NULS/Signer.h b/src/NULS/Signer.h index ccbd77bc023..407ec785716 100644 --- a/src/NULS/Signer.h +++ b/src/NULS/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nano/Address.cpp b/src/Nano/Address.cpp index 9788472b089..b6b49143212 100644 --- a/src/Nano/Address.cpp +++ b/src/Nano/Address.cpp @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nano/Address.h b/src/Nano/Address.h index a2c686ac98e..28dcd2c16d4 100644 --- a/src/Nano/Address.h +++ b/src/Nano/Address.h @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nano/Entry.cpp b/src/Nano/Entry.cpp index e8e9fc1ab77..640408ccb2b 100644 --- a/src/Nano/Entry.cpp +++ b/src/Nano/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nano/Entry.h b/src/Nano/Entry.h index 50741817798..946ae385887 100644 --- a/src/Nano/Entry.h +++ b/src/Nano/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nano/Signer.cpp b/src/Nano/Signer.cpp index a177a84e729..d81bd3c5b8f 100644 --- a/src/Nano/Signer.cpp +++ b/src/Nano/Signer.cpp @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nano/Signer.h b/src/Nano/Signer.h index 8ca6fe318d5..7730a7e36db 100644 --- a/src/Nano/Signer.h +++ b/src/Nano/Signer.h @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Address.cpp b/src/Nebulas/Address.cpp index 6b0cfd8e9f6..b35f799af8c 100644 --- a/src/Nebulas/Address.cpp +++ b/src/Nebulas/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Address.h b/src/Nebulas/Address.h index d0bcaa5c327..cd63bf0a65e 100644 --- a/src/Nebulas/Address.h +++ b/src/Nebulas/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Entry.cpp b/src/Nebulas/Entry.cpp index fa0d26ce4ba..8df53031f88 100644 --- a/src/Nebulas/Entry.cpp +++ b/src/Nebulas/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Entry.h b/src/Nebulas/Entry.h index da13dc54a1d..f34efbcc47d 100644 --- a/src/Nebulas/Entry.h +++ b/src/Nebulas/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Signer.cpp b/src/Nebulas/Signer.cpp index 1d0159eeed4..719a32499fa 100644 --- a/src/Nebulas/Signer.cpp +++ b/src/Nebulas/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Signer.h b/src/Nebulas/Signer.h index 2beed1448ce..8c30a821c49 100644 --- a/src/Nebulas/Signer.h +++ b/src/Nebulas/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Transaction.cpp b/src/Nebulas/Transaction.cpp index ce70cb617da..4d84a382b72 100644 --- a/src/Nebulas/Transaction.cpp +++ b/src/Nebulas/Transaction.cpp @@ -1,7 +1,7 @@ -// Copyright © 2017-2020 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // // This file is part of Trust. The full Trust copyright notice, including -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nebulas/Transaction.h b/src/Nebulas/Transaction.h index dfeb5585f04..5bb100ef503 100644 --- a/src/Nebulas/Transaction.h +++ b/src/Nebulas/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nervos/Address.cpp b/src/Nervos/Address.cpp index 7740a96657e..314e679ee8c 100644 --- a/src/Nervos/Address.cpp +++ b/src/Nervos/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Address.h b/src/Nervos/Address.h index 3b8c28fab7c..2c0b7a02dfd 100644 --- a/src/Nervos/Address.h +++ b/src/Nervos/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Cell.h b/src/Nervos/Cell.h index 750f1b0fc58..c57334d4f83 100644 --- a/src/Nervos/Cell.h +++ b/src/Nervos/Cell.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/CellDep.cpp b/src/Nervos/CellDep.cpp index a9acf139ae3..d4b30afc0ad 100644 --- a/src/Nervos/CellDep.cpp +++ b/src/Nervos/CellDep.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/CellDep.h b/src/Nervos/CellDep.h index 9318017803e..0dc32060386 100644 --- a/src/Nervos/CellDep.h +++ b/src/Nervos/CellDep.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/CellInput.cpp b/src/Nervos/CellInput.cpp index 61810b9686b..8d20ac45365 100644 --- a/src/Nervos/CellInput.cpp +++ b/src/Nervos/CellInput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/CellInput.h b/src/Nervos/CellInput.h index afb8488cf05..11fd2a5f8dc 100644 --- a/src/Nervos/CellInput.h +++ b/src/Nervos/CellInput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/CellOutput.cpp b/src/Nervos/CellOutput.cpp index ed1d98b86b8..09f7e14600e 100644 --- a/src/Nervos/CellOutput.cpp +++ b/src/Nervos/CellOutput.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/CellOutput.h b/src/Nervos/CellOutput.h index ca2b267d0cf..8ad0afba633 100644 --- a/src/Nervos/CellOutput.h +++ b/src/Nervos/CellOutput.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Constants.h b/src/Nervos/Constants.h index 97678b77bd7..b3af305d479 100644 --- a/src/Nervos/Constants.h +++ b/src/Nervos/Constants.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Entry.cpp b/src/Nervos/Entry.cpp index 48299735dc0..7a6aff9292e 100644 --- a/src/Nervos/Entry.cpp +++ b/src/Nervos/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Entry.h b/src/Nervos/Entry.h index 6cd02079189..c40e012d8ae 100644 --- a/src/Nervos/Entry.h +++ b/src/Nervos/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/HeaderDep.h b/src/Nervos/HeaderDep.h index af94b115db8..6706eeeeb0b 100644 --- a/src/Nervos/HeaderDep.h +++ b/src/Nervos/HeaderDep.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/OutPoint.cpp b/src/Nervos/OutPoint.cpp index a9cfbb1599d..6066d97ee5e 100644 --- a/src/Nervos/OutPoint.cpp +++ b/src/Nervos/OutPoint.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/OutPoint.h b/src/Nervos/OutPoint.h index f6fc82e90f0..10b67cb9c38 100644 --- a/src/Nervos/OutPoint.h +++ b/src/Nervos/OutPoint.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Script.cpp b/src/Nervos/Script.cpp index b0f688f5797..94682d37089 100644 --- a/src/Nervos/Script.cpp +++ b/src/Nervos/Script.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Script.h b/src/Nervos/Script.h index 7c0abffec5c..d5a1f132386 100644 --- a/src/Nervos/Script.h +++ b/src/Nervos/Script.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Serialization.h b/src/Nervos/Serialization.h index 9a2c66dee71..eb76d2d1e2e 100644 --- a/src/Nervos/Serialization.h +++ b/src/Nervos/Serialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Signer.cpp b/src/Nervos/Signer.cpp index 3a39ed1eb45..f223096fa11 100644 --- a/src/Nervos/Signer.cpp +++ b/src/Nervos/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Signer.h b/src/Nervos/Signer.h index 7c7c0c1d279..e2e2c3fb38c 100644 --- a/src/Nervos/Signer.h +++ b/src/Nervos/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Transaction.cpp b/src/Nervos/Transaction.cpp index bf61915e2f8..98983bf6d77 100644 --- a/src/Nervos/Transaction.cpp +++ b/src/Nervos/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Transaction.h b/src/Nervos/Transaction.h index 6121b0a6866..c94b7f0e1bb 100644 --- a/src/Nervos/Transaction.h +++ b/src/Nervos/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/TransactionPlan.cpp b/src/Nervos/TransactionPlan.cpp index c4135505af8..a755b00010a 100644 --- a/src/Nervos/TransactionPlan.cpp +++ b/src/Nervos/TransactionPlan.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/TransactionPlan.h b/src/Nervos/TransactionPlan.h index 7fc800e44a3..39f8bf6d1ea 100644 --- a/src/Nervos/TransactionPlan.h +++ b/src/Nervos/TransactionPlan.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Witness.cpp b/src/Nervos/Witness.cpp index 73a7e37fed8..ae954b11cd0 100644 --- a/src/Nervos/Witness.cpp +++ b/src/Nervos/Witness.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nervos/Witness.h b/src/Nervos/Witness.h index f53aa398f7a..15e3319c49b 100644 --- a/src/Nervos/Witness.h +++ b/src/Nervos/Witness.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nimiq/Address.cpp b/src/Nimiq/Address.cpp index 46b6cb3ace7..c6d59b1e22c 100644 --- a/src/Nimiq/Address.cpp +++ b/src/Nimiq/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nimiq/Address.h b/src/Nimiq/Address.h index ff60c756f9e..4d991788928 100644 --- a/src/Nimiq/Address.h +++ b/src/Nimiq/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nimiq/Entry.cpp b/src/Nimiq/Entry.cpp index e750d1524bd..619504314f1 100644 --- a/src/Nimiq/Entry.cpp +++ b/src/Nimiq/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Nimiq/Entry.h b/src/Nimiq/Entry.h index 0a256d002fe..467e3470dce 100644 --- a/src/Nimiq/Entry.h +++ b/src/Nimiq/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nimiq/Signer.cpp b/src/Nimiq/Signer.cpp index 5433b88aa86..81fe18bbec5 100644 --- a/src/Nimiq/Signer.cpp +++ b/src/Nimiq/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nimiq/Signer.h b/src/Nimiq/Signer.h index 022f98ba424..b3c0e071c04 100644 --- a/src/Nimiq/Signer.h +++ b/src/Nimiq/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nimiq/Transaction.cpp b/src/Nimiq/Transaction.cpp index c7828ed73a8..f975612883e 100644 --- a/src/Nimiq/Transaction.cpp +++ b/src/Nimiq/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Nimiq/Transaction.h b/src/Nimiq/Transaction.h index ad8c192756d..f9efe6f3be0 100644 --- a/src/Nimiq/Transaction.h +++ b/src/Nimiq/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/NumericLiteral.h b/src/NumericLiteral.h index 4674dda8d88..f689e7f340e 100644 --- a/src/NumericLiteral.h +++ b/src/NumericLiteral.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Oasis/Address.cpp b/src/Oasis/Address.cpp index ee4102f4d8f..dac0488d3f2 100644 --- a/src/Oasis/Address.cpp +++ b/src/Oasis/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Oasis/Address.h b/src/Oasis/Address.h index c4eb73f3ef0..16c5b383500 100644 --- a/src/Oasis/Address.h +++ b/src/Oasis/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Oasis/Entry.cpp b/src/Oasis/Entry.cpp index 8d6f24bddd3..2192774be99 100644 --- a/src/Oasis/Entry.cpp +++ b/src/Oasis/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Oasis/Entry.h b/src/Oasis/Entry.h index e8d1cf2af05..e123532579a 100644 --- a/src/Oasis/Entry.h +++ b/src/Oasis/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Oasis/Signer.cpp b/src/Oasis/Signer.cpp index b9263a7d8d9..de9dfcad0db 100644 --- a/src/Oasis/Signer.cpp +++ b/src/Oasis/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Oasis/Signer.h b/src/Oasis/Signer.h index 90e92d0e5b9..641e25a6f84 100644 --- a/src/Oasis/Signer.h +++ b/src/Oasis/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Oasis/Transaction.cpp b/src/Oasis/Transaction.cpp index dece41bfb53..e9654e3822c 100644 --- a/src/Oasis/Transaction.cpp +++ b/src/Oasis/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Oasis/Transaction.h b/src/Oasis/Transaction.h index 2c72e7762c4..c892aa43bcc 100644 --- a/src/Oasis/Transaction.h +++ b/src/Oasis/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/src/Ontology/Address.cpp b/src/Ontology/Address.cpp index 40333d62217..24d0df56fad 100644 --- a/src/Ontology/Address.cpp +++ b/src/Ontology/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Address.h b/src/Ontology/Address.h index b55ebf1f3dc..076d80f8198 100644 --- a/src/Ontology/Address.h +++ b/src/Ontology/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Asset.h b/src/Ontology/Asset.h index a393db0f18e..29250002203 100644 --- a/src/Ontology/Asset.h +++ b/src/Ontology/Asset.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Entry.cpp b/src/Ontology/Entry.cpp index 60d7da78a29..810f3e512ba 100644 --- a/src/Ontology/Entry.cpp +++ b/src/Ontology/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Entry.h b/src/Ontology/Entry.h index 42a6ab1424e..794e43d0986 100644 --- a/src/Ontology/Entry.h +++ b/src/Ontology/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Oep4.cpp b/src/Ontology/Oep4.cpp index 3c08c8af512..8e4f866e8e1 100644 --- a/src/Ontology/Oep4.cpp +++ b/src/Ontology/Oep4.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Oep4.h b/src/Ontology/Oep4.h index d121d8a1ceb..9258e68f1f4 100644 --- a/src/Ontology/Oep4.h +++ b/src/Ontology/Oep4.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Oep4TxBuilder.cpp b/src/Ontology/Oep4TxBuilder.cpp index 04e5f2c108c..5dc6373ccae 100644 --- a/src/Ontology/Oep4TxBuilder.cpp +++ b/src/Ontology/Oep4TxBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Oep4TxBuilder.h b/src/Ontology/Oep4TxBuilder.h index 138f955aa82..22706683001 100644 --- a/src/Ontology/Oep4TxBuilder.h +++ b/src/Ontology/Oep4TxBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Ong.cpp b/src/Ontology/Ong.cpp index e37ff4ae6a7..6d2c9e3860a 100644 --- a/src/Ontology/Ong.cpp +++ b/src/Ontology/Ong.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Ong.h b/src/Ontology/Ong.h index 8537f605967..d73bdd8d888 100644 --- a/src/Ontology/Ong.h +++ b/src/Ontology/Ong.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/OngTxBuilder.cpp b/src/Ontology/OngTxBuilder.cpp index f44d46a14b9..8ca67a34d74 100644 --- a/src/Ontology/OngTxBuilder.cpp +++ b/src/Ontology/OngTxBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/OngTxBuilder.h b/src/Ontology/OngTxBuilder.h index a97c169c5fd..f76595c73ba 100644 --- a/src/Ontology/OngTxBuilder.h +++ b/src/Ontology/OngTxBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Ont.cpp b/src/Ontology/Ont.cpp index 55a9bf5f2a8..a25a7745809 100644 --- a/src/Ontology/Ont.cpp +++ b/src/Ontology/Ont.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Ont.h b/src/Ontology/Ont.h index 88806c2a197..a44b8031503 100644 --- a/src/Ontology/Ont.h +++ b/src/Ontology/Ont.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/OntTxBuilder.cpp b/src/Ontology/OntTxBuilder.cpp index 735681c14fc..de94601a929 100644 --- a/src/Ontology/OntTxBuilder.cpp +++ b/src/Ontology/OntTxBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/OntTxBuilder.h b/src/Ontology/OntTxBuilder.h index 5cf64cbe16c..1ca982541ad 100644 --- a/src/Ontology/OntTxBuilder.h +++ b/src/Ontology/OntTxBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/OpCode.h b/src/Ontology/OpCode.h index 3f7904242fd..86ebbaa1613 100644 --- a/src/Ontology/OpCode.h +++ b/src/Ontology/OpCode.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/ParamsBuilder.cpp b/src/Ontology/ParamsBuilder.cpp index c4db460cfb7..40261a87608 100644 --- a/src/Ontology/ParamsBuilder.cpp +++ b/src/Ontology/ParamsBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/ParamsBuilder.h b/src/Ontology/ParamsBuilder.h index 0a4acfd55c5..ee4a8456eab 100644 --- a/src/Ontology/ParamsBuilder.h +++ b/src/Ontology/ParamsBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/SigData.cpp b/src/Ontology/SigData.cpp index 857504de0e2..b2cfccd051e 100644 --- a/src/Ontology/SigData.cpp +++ b/src/Ontology/SigData.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/SigData.h b/src/Ontology/SigData.h index 0ee703922c1..c06a2f17df6 100644 --- a/src/Ontology/SigData.h +++ b/src/Ontology/SigData.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Signer.cpp b/src/Ontology/Signer.cpp index 876b97bf9c7..fd09418b761 100644 --- a/src/Ontology/Signer.cpp +++ b/src/Ontology/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Signer.h b/src/Ontology/Signer.h index 4f2dc8459ca..e28816e09c2 100644 --- a/src/Ontology/Signer.h +++ b/src/Ontology/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Transaction.cpp b/src/Ontology/Transaction.cpp index 7bf47d716f4..b8825195fa5 100644 --- a/src/Ontology/Transaction.cpp +++ b/src/Ontology/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ontology/Transaction.h b/src/Ontology/Transaction.h index 0f1388b3eb7..970b5f82671 100644 --- a/src/Ontology/Transaction.h +++ b/src/Ontology/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Polkadot/Address.h b/src/Polkadot/Address.h index f695ad85798..cc865a5dc4d 100644 --- a/src/Polkadot/Address.h +++ b/src/Polkadot/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Polkadot/Entry.cpp b/src/Polkadot/Entry.cpp index d14e3ed5887..60f8ead63bb 100644 --- a/src/Polkadot/Entry.cpp +++ b/src/Polkadot/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Polkadot/Entry.h b/src/Polkadot/Entry.h index d62be51e167..bf22d9b83b9 100644 --- a/src/Polkadot/Entry.h +++ b/src/Polkadot/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Polkadot/Extrinsic.cpp b/src/Polkadot/Extrinsic.cpp index 8cab2fb5cef..c9b73549593 100644 --- a/src/Polkadot/Extrinsic.cpp +++ b/src/Polkadot/Extrinsic.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Polkadot/Extrinsic.h b/src/Polkadot/Extrinsic.h index ccac8260998..b5e248b37ad 100644 --- a/src/Polkadot/Extrinsic.h +++ b/src/Polkadot/Extrinsic.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Polkadot/SS58Address.cpp b/src/Polkadot/SS58Address.cpp index f87b6395045..99ed2cf736f 100644 --- a/src/Polkadot/SS58Address.cpp +++ b/src/Polkadot/SS58Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Polkadot/SS58Address.h b/src/Polkadot/SS58Address.h index 4feaaacd760..6463313f2e3 100644 --- a/src/Polkadot/SS58Address.h +++ b/src/Polkadot/SS58Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Polkadot/ScaleCodec.h b/src/Polkadot/ScaleCodec.h index e0d1c3ca20d..d7a993c2ede 100644 --- a/src/Polkadot/ScaleCodec.h +++ b/src/Polkadot/ScaleCodec.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Polkadot/Signer.cpp b/src/Polkadot/Signer.cpp index b5f083a522b..0c3a01a786d 100644 --- a/src/Polkadot/Signer.cpp +++ b/src/Polkadot/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Polkadot/Signer.h b/src/Polkadot/Signer.h index d893d64a010..bf4cb288246 100644 --- a/src/Polkadot/Signer.h +++ b/src/Polkadot/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/PrivateKey.cpp b/src/PrivateKey.cpp index b11cd18fadb..373c021c3e6 100644 --- a/src/PrivateKey.cpp +++ b/src/PrivateKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/PrivateKey.h b/src/PrivateKey.h index 50b16b188d0..26290e238d4 100644 --- a/src/PrivateKey.h +++ b/src/PrivateKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/PublicKey.cpp b/src/PublicKey.cpp index c002c4d1320..8c6fd35c569 100644 --- a/src/PublicKey.cpp +++ b/src/PublicKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/PublicKey.h b/src/PublicKey.h index d5698c6e89d..cde58cab8eb 100644 --- a/src/PublicKey.h +++ b/src/PublicKey.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Result.h b/src/Result.h index 1f4991c3cc4..347a3b10f43 100644 --- a/src/Result.h +++ b/src/Result.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ronin/Address.cpp b/src/Ronin/Address.cpp index 74555fb553a..a64e9d0383c 100644 --- a/src/Ronin/Address.cpp +++ b/src/Ronin/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ronin/Address.h b/src/Ronin/Address.h index ac28eb1372f..24369e09d87 100644 --- a/src/Ronin/Address.h +++ b/src/Ronin/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Ronin/Entry.cpp b/src/Ronin/Entry.cpp index 8ad42d7feb6..c70d2cca7b4 100644 --- a/src/Ronin/Entry.cpp +++ b/src/Ronin/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Ronin/Entry.h b/src/Ronin/Entry.h index 1b485ea4cc1..e8ea769ff6e 100644 --- a/src/Ronin/Entry.h +++ b/src/Ronin/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Solana/Signer.cpp b/src/Solana/Signer.cpp index a2359b6006c..788cb77de5f 100644 --- a/src/Solana/Signer.cpp +++ b/src/Solana/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/StarkEx/MessageSigner.cpp b/src/StarkEx/MessageSigner.cpp index b6c5b96cb5c..b26106f1264 100644 --- a/src/StarkEx/MessageSigner.cpp +++ b/src/StarkEx/MessageSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/StarkEx/MessageSigner.h b/src/StarkEx/MessageSigner.h index 1face6ccc08..f1e54819f77 100644 --- a/src/StarkEx/MessageSigner.h +++ b/src/StarkEx/MessageSigner.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Stellar/Address.cpp b/src/Stellar/Address.cpp index 84b99a62bae..dfc49df886c 100644 --- a/src/Stellar/Address.cpp +++ b/src/Stellar/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Stellar/Address.h b/src/Stellar/Address.h index 6f42dd14926..8cffb878b17 100644 --- a/src/Stellar/Address.h +++ b/src/Stellar/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Stellar/Entry.cpp b/src/Stellar/Entry.cpp index f694d347c7f..1cd891d8752 100644 --- a/src/Stellar/Entry.cpp +++ b/src/Stellar/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Stellar/Entry.h b/src/Stellar/Entry.h index 617aa3cac10..b4c3489c989 100644 --- a/src/Stellar/Entry.h +++ b/src/Stellar/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Stellar/Signer.cpp b/src/Stellar/Signer.cpp index 5d48a71551b..4e39ad5e0e2 100644 --- a/src/Stellar/Signer.cpp +++ b/src/Stellar/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Stellar/Signer.h b/src/Stellar/Signer.h index 7cf60a41094..fe7f983def7 100644 --- a/src/Stellar/Signer.h +++ b/src/Stellar/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/THORChain/Entry.cpp b/src/THORChain/Entry.cpp index 02c1d4f97c0..ed96e9e3d9d 100644 --- a/src/THORChain/Entry.cpp +++ b/src/THORChain/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/THORChain/Entry.h b/src/THORChain/Entry.h index a5650e5b94a..aeb3707cd1f 100644 --- a/src/THORChain/Entry.h +++ b/src/THORChain/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/THORChain/Signer.cpp b/src/THORChain/Signer.cpp index 30ebb84217b..7554e242013 100644 --- a/src/THORChain/Signer.cpp +++ b/src/THORChain/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/THORChain/Signer.h b/src/THORChain/Signer.h index e524abfb5ee..10a5214c784 100644 --- a/src/THORChain/Signer.h +++ b/src/THORChain/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/THORChain/Swap.cpp b/src/THORChain/Swap.cpp index 4e2d41cabb7..5a019de0edf 100644 --- a/src/THORChain/Swap.cpp +++ b/src/THORChain/Swap.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/THORChain/Swap.h b/src/THORChain/Swap.h index 54c5e41fceb..533d63c3b28 100644 --- a/src/THORChain/Swap.h +++ b/src/THORChain/Swap.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/THORChain/TWSwap.cpp b/src/THORChain/TWSwap.cpp index c7da748de0c..f47e27a5277 100644 --- a/src/THORChain/TWSwap.cpp +++ b/src/THORChain/TWSwap.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Address.cpp b/src/Tezos/Address.cpp index a495096b61a..2b1ce0e83c1 100644 --- a/src/Tezos/Address.cpp +++ b/src/Tezos/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Address.h b/src/Tezos/Address.h index eb360abc6bd..54bceca1605 100644 --- a/src/Tezos/Address.h +++ b/src/Tezos/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/BinaryCoding.cpp b/src/Tezos/BinaryCoding.cpp index 1b8dd1c481d..143cdbb74c9 100644 --- a/src/Tezos/BinaryCoding.cpp +++ b/src/Tezos/BinaryCoding.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/BinaryCoding.h b/src/Tezos/BinaryCoding.h index 9bee6a3bd46..07b5db4cf25 100644 --- a/src/Tezos/BinaryCoding.h +++ b/src/Tezos/BinaryCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Entry.cpp b/src/Tezos/Entry.cpp index 39120d30a1b..e134eadce05 100644 --- a/src/Tezos/Entry.cpp +++ b/src/Tezos/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Entry.h b/src/Tezos/Entry.h index 3b9f1bd697c..85647cc89c6 100644 --- a/src/Tezos/Entry.h +++ b/src/Tezos/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Forging.cpp b/src/Tezos/Forging.cpp index 27bc81f4816..a81055f4242 100644 --- a/src/Tezos/Forging.cpp +++ b/src/Tezos/Forging.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Forging.h b/src/Tezos/Forging.h index 721546db1e9..1b2d365cab2 100644 --- a/src/Tezos/Forging.h +++ b/src/Tezos/Forging.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Michelson.cpp b/src/Tezos/Michelson.cpp index 0b573885ebd..9d32fa3298a 100644 --- a/src/Tezos/Michelson.cpp +++ b/src/Tezos/Michelson.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Michelson.h b/src/Tezos/Michelson.h index 1e6d944c59d..ec1528dfb21 100644 --- a/src/Tezos/Michelson.h +++ b/src/Tezos/Michelson.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/OperationList.cpp b/src/Tezos/OperationList.cpp index e72c5bf1e53..15e445ce082 100644 --- a/src/Tezos/OperationList.cpp +++ b/src/Tezos/OperationList.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/OperationList.h b/src/Tezos/OperationList.h index a6f3a4a9f70..bf2cc6afe09 100644 --- a/src/Tezos/OperationList.h +++ b/src/Tezos/OperationList.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Signer.cpp b/src/Tezos/Signer.cpp index a8e8b4f0cfc..7043ede69fa 100644 --- a/src/Tezos/Signer.cpp +++ b/src/Tezos/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tezos/Signer.h b/src/Tezos/Signer.h index a6e16cf4733..549480854d1 100644 --- a/src/Tezos/Signer.h +++ b/src/Tezos/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Address.cpp b/src/TheOpenNetwork/Address.cpp index 8f6a3b2b9a3..80caaea58de 100644 --- a/src/TheOpenNetwork/Address.cpp +++ b/src/TheOpenNetwork/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Address.h b/src/TheOpenNetwork/Address.h index 2175926f381..a456d261551 100644 --- a/src/TheOpenNetwork/Address.h +++ b/src/TheOpenNetwork/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Entry.cpp b/src/TheOpenNetwork/Entry.cpp index 21f2e19de1b..aa4ba83143f 100644 --- a/src/TheOpenNetwork/Entry.cpp +++ b/src/TheOpenNetwork/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Entry.h b/src/TheOpenNetwork/Entry.h index a432b493bda..3f3b91b6e38 100644 --- a/src/TheOpenNetwork/Entry.h +++ b/src/TheOpenNetwork/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Message.cpp b/src/TheOpenNetwork/Message.cpp index cf76cb7df72..41b890466f9 100644 --- a/src/TheOpenNetwork/Message.cpp +++ b/src/TheOpenNetwork/Message.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Message.h b/src/TheOpenNetwork/Message.h index 5b7aee9cc84..928223d3216 100644 --- a/src/TheOpenNetwork/Message.h +++ b/src/TheOpenNetwork/Message.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Signer.cpp b/src/TheOpenNetwork/Signer.cpp index df5e6db1a27..a33b01853be 100644 --- a/src/TheOpenNetwork/Signer.cpp +++ b/src/TheOpenNetwork/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/Signer.h b/src/TheOpenNetwork/Signer.h index 2ca74fa7cb8..78b76f57790 100644 --- a/src/TheOpenNetwork/Signer.h +++ b/src/TheOpenNetwork/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/WorkchainType.h b/src/TheOpenNetwork/WorkchainType.h index 9d5e4f43386..313e0c968fa 100644 --- a/src/TheOpenNetwork/WorkchainType.h +++ b/src/TheOpenNetwork/WorkchainType.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/wallet/Wallet.cpp b/src/TheOpenNetwork/wallet/Wallet.cpp index 8a381ecf8a3..5ff61790275 100644 --- a/src/TheOpenNetwork/wallet/Wallet.cpp +++ b/src/TheOpenNetwork/wallet/Wallet.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/wallet/Wallet.h b/src/TheOpenNetwork/wallet/Wallet.h index 8e081363957..58bc9ee254b 100644 --- a/src/TheOpenNetwork/wallet/Wallet.h +++ b/src/TheOpenNetwork/wallet/Wallet.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/wallet/WalletV4R2.cpp b/src/TheOpenNetwork/wallet/WalletV4R2.cpp index 392129c48d7..9e01a4a2950 100644 --- a/src/TheOpenNetwork/wallet/WalletV4R2.cpp +++ b/src/TheOpenNetwork/wallet/WalletV4R2.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TheOpenNetwork/wallet/WalletV4R2.h b/src/TheOpenNetwork/wallet/WalletV4R2.h index 82ec5f34959..f965db84385 100644 --- a/src/TheOpenNetwork/wallet/WalletV4R2.h +++ b/src/TheOpenNetwork/wallet/WalletV4R2.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Theta/Coins.h b/src/Theta/Coins.h index 6f8ab47659a..a7fb326b348 100644 --- a/src/Theta/Coins.h +++ b/src/Theta/Coins.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Theta/Entry.cpp b/src/Theta/Entry.cpp index 634a661a059..f4c585338b2 100644 --- a/src/Theta/Entry.cpp +++ b/src/Theta/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Theta/Entry.h b/src/Theta/Entry.h index 429190dee81..cecc7e23336 100644 --- a/src/Theta/Entry.h +++ b/src/Theta/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Theta/Signer.cpp b/src/Theta/Signer.cpp index c50c74f264e..b5e8734f4b3 100755 --- a/src/Theta/Signer.cpp +++ b/src/Theta/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Theta/Signer.h b/src/Theta/Signer.h index e4dbe975fd4..0d4dc08cd63 100644 --- a/src/Theta/Signer.h +++ b/src/Theta/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Theta/Transaction.cpp b/src/Theta/Transaction.cpp index 380f30084ea..b9a70c0611e 100644 --- a/src/Theta/Transaction.cpp +++ b/src/Theta/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Theta/Transaction.h b/src/Theta/Transaction.h index 20edd2d0de6..770bcc1cf75 100644 --- a/src/Theta/Transaction.h +++ b/src/Theta/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/TransactionCompiler.cpp b/src/TransactionCompiler.cpp index 2f725ab6780..f23ad77d032 100644 --- a/src/TransactionCompiler.cpp +++ b/src/TransactionCompiler.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/TransactionCompiler.h b/src/TransactionCompiler.h index 21b968717b6..fc2cd66e6f1 100644 --- a/src/TransactionCompiler.h +++ b/src/TransactionCompiler.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tron/Address.cpp b/src/Tron/Address.cpp index b24b4806d23..cbf46146b46 100644 --- a/src/Tron/Address.cpp +++ b/src/Tron/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Tron/Address.h b/src/Tron/Address.h index 2c7a37128ee..4c80204a07a 100644 --- a/src/Tron/Address.h +++ b/src/Tron/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Tron/Entry.cpp b/src/Tron/Entry.cpp index 393c6be330d..a4e165be3a1 100644 --- a/src/Tron/Entry.cpp +++ b/src/Tron/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Tron/Entry.h b/src/Tron/Entry.h index d689b890aa7..7fc6713a177 100644 --- a/src/Tron/Entry.h +++ b/src/Tron/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Tron/MessageSigner.cpp b/src/Tron/MessageSigner.cpp new file mode 100644 index 00000000000..36bccf47453 --- /dev/null +++ b/src/Tron/MessageSigner.cpp @@ -0,0 +1,38 @@ +// 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. + +#include +#include + +#include +#include "HexCoding.h" + + +namespace TW::Tron { + +Data generateMessage(const std::string& message) { + std::string prefix(1, MessageSigner::TronPrefix); + std::stringstream ss; + ss << prefix << MessageSigner::MessagePrefix << message; + Data signableMessage = Hash::keccak256(data(ss.str())); + return signableMessage; +} + +std::string MessageSigner::signMessage(const PrivateKey& privateKey, const std::string& message) { + auto signableMessage = generateMessage(message); + auto data = privateKey.sign(signableMessage, TWCurveSECP256k1); + data[64] += 27; + return hex(data); +} + +bool MessageSigner::verifyMessage(const PublicKey& publicKey, const std::string& message, const std::string& signature) noexcept { + Data msg = generateMessage(message); + auto rawSignature = parse_hex(signature); + auto recovered = publicKey.recover(rawSignature, msg); + return recovered == publicKey && publicKey.verify(rawSignature, msg); +} + +} // namespace TW::Ethereum diff --git a/src/Tron/MessageSigner.h b/src/Tron/MessageSigner.h new file mode 100644 index 00000000000..eca2845e653 --- /dev/null +++ b/src/Tron/MessageSigner.h @@ -0,0 +1,33 @@ +// Copyright © 2017-2023 Trust Wallet. +// +// This file is part of Trust. The full Trust copyright notice, including +// terms governing use, modification, and redistribution, is contained in the +// file LICENSE at the root of the source code distribution tree. + +#pragma once + +#include +#include +#include + +namespace TW::Tron { + +class MessageSigner { +public: + /// Sign a message following https://github.com/tronprotocol/tronweb/blob/859253856c79d3aff26ec6c89afefc73840d648d/src/lib/trx.js#L768 + /// \param privateKey the private key to sign with + /// \param message message to sign + /// \return hex signed message + static std::string signMessage(const PrivateKey& privateKey, const std::string& message); + + /// Verify a TRON message + /// \param publicKey publickey to verify the signed message + /// \param message message to be verified as a string + /// \param signature signature to verify the message against + /// \return true if the message match the signature, false otherwise + static bool verifyMessage(const PublicKey& publicKey, const std::string& message, const std::string& signature) noexcept; + static constexpr auto MessagePrefix = "TRON Signed Message:\n32"; + static constexpr std::uint8_t TronPrefix{0x19}; +}; + +} // namespace TW::Ethereum diff --git a/src/Tron/Serialization.cpp b/src/Tron/Serialization.cpp index 270ffb22481..55f95775fc0 100644 --- a/src/Tron/Serialization.cpp +++ b/src/Tron/Serialization.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tron/Serialization.h b/src/Tron/Serialization.h index 7f3c074cfd5..b434e9f2c74 100644 --- a/src/Tron/Serialization.h +++ b/src/Tron/Serialization.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Tron/Signer.cpp b/src/Tron/Signer.cpp index e2b4a987399..a00bdc71638 100644 --- a/src/Tron/Signer.cpp +++ b/src/Tron/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Tron/Signer.h b/src/Tron/Signer.h index 33a06fff775..fb9ed978053 100644 --- a/src/Tron/Signer.h +++ b/src/Tron/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/VeChain/Clause.h b/src/VeChain/Clause.h index 71d56d7d785..14191395097 100644 --- a/src/VeChain/Clause.h +++ b/src/VeChain/Clause.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/VeChain/Entry.cpp b/src/VeChain/Entry.cpp index 0a01f790321..28574d44a17 100644 --- a/src/VeChain/Entry.cpp +++ b/src/VeChain/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/VeChain/Entry.h b/src/VeChain/Entry.h index 48ec8b5db78..8ba48845d06 100644 --- a/src/VeChain/Entry.h +++ b/src/VeChain/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/VeChain/Signer.cpp b/src/VeChain/Signer.cpp index 7cbfd00d333..b0007cf6104 100644 --- a/src/VeChain/Signer.cpp +++ b/src/VeChain/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/VeChain/Signer.h b/src/VeChain/Signer.h index f0a2a92d22b..d434bd4d1d8 100644 --- a/src/VeChain/Signer.h +++ b/src/VeChain/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/VeChain/Transaction.cpp b/src/VeChain/Transaction.cpp index aeca93d352f..8c28ea8becf 100644 --- a/src/VeChain/Transaction.cpp +++ b/src/VeChain/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/VeChain/Transaction.h b/src/VeChain/Transaction.h index c4229b795d3..ae5e0a6fcff 100644 --- a/src/VeChain/Transaction.h +++ b/src/VeChain/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Wasm.h b/src/Wasm.h index afb9c67aa88..77071075ce0 100644 --- a/src/Wasm.h +++ b/src/Wasm.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Waves/Address.cpp b/src/Waves/Address.cpp index 6103765c48b..3f241010cde 100644 --- a/src/Waves/Address.cpp +++ b/src/Waves/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Address.h b/src/Waves/Address.h index fed1743c9de..847c05f4c79 100644 --- a/src/Waves/Address.h +++ b/src/Waves/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/BinaryCoding.h b/src/Waves/BinaryCoding.h index 73e10278ab9..9be91647a6e 100644 --- a/src/Waves/BinaryCoding.h +++ b/src/Waves/BinaryCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Entry.cpp b/src/Waves/Entry.cpp index 5e0e0580904..2659382e3d1 100644 --- a/src/Waves/Entry.cpp +++ b/src/Waves/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Entry.h b/src/Waves/Entry.h index 68d760f6718..bd5d460d8fe 100644 --- a/src/Waves/Entry.h +++ b/src/Waves/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Signer.cpp b/src/Waves/Signer.cpp index 93716de50d4..665e1caedfc 100644 --- a/src/Waves/Signer.cpp +++ b/src/Waves/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Signer.h b/src/Waves/Signer.h index f7504d61132..0f86a9c55cb 100644 --- a/src/Waves/Signer.h +++ b/src/Waves/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Transaction.cpp b/src/Waves/Transaction.cpp index bb6e7885c0d..34f86821bfd 100644 --- a/src/Waves/Transaction.cpp +++ b/src/Waves/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Waves/Transaction.h b/src/Waves/Transaction.h index 539af362566..cf1f4ba1316 100644 --- a/src/Waves/Transaction.h +++ b/src/Waves/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/XRP/Address.cpp b/src/XRP/Address.cpp index 06d6a479159..39bf94e975e 100644 --- a/src/XRP/Address.cpp +++ b/src/XRP/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/XRP/Address.h b/src/XRP/Address.h index ffa8acbec2d..7b464091d43 100644 --- a/src/XRP/Address.h +++ b/src/XRP/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/XRP/BinaryCoding.h b/src/XRP/BinaryCoding.h index 5f88d79d739..db01d934b5a 100644 --- a/src/XRP/BinaryCoding.h +++ b/src/XRP/BinaryCoding.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/XRP/Entry.cpp b/src/XRP/Entry.cpp index c916cdcfd82..bcb490a9383 100644 --- a/src/XRP/Entry.cpp +++ b/src/XRP/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/XRP/Entry.h b/src/XRP/Entry.h index 0e8f4d98d59..60e24ca5f4c 100644 --- a/src/XRP/Entry.h +++ b/src/XRP/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/XRP/Signer.cpp b/src/XRP/Signer.cpp index f72a257e9bd..352311d34e0 100644 --- a/src/XRP/Signer.cpp +++ b/src/XRP/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/XRP/Signer.h b/src/XRP/Signer.h index 2225e751ce2..6e0c7aad889 100644 --- a/src/XRP/Signer.h +++ b/src/XRP/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/XRP/Transaction.cpp b/src/XRP/Transaction.cpp index 2358fb723a3..9acc738f9cc 100644 --- a/src/XRP/Transaction.cpp +++ b/src/XRP/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/XRP/Transaction.h b/src/XRP/Transaction.h index 836fcc5a4a5..563fc9fd78d 100644 --- a/src/XRP/Transaction.h +++ b/src/XRP/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/XRP/XAddress.cpp b/src/XRP/XAddress.cpp index ce93175406b..19cdf8ec77d 100644 --- a/src/XRP/XAddress.cpp +++ b/src/XRP/XAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/XRP/XAddress.h b/src/XRP/XAddress.h index 1d1e38a5271..675e345a25e 100644 --- a/src/XRP/XAddress.h +++ b/src/XRP/XAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zcash/Entry.cpp b/src/Zcash/Entry.cpp index 5e23b51d63c..6b908486f7a 100644 --- a/src/Zcash/Entry.cpp +++ b/src/Zcash/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zcash/Entry.h b/src/Zcash/Entry.h index 787597ba42e..ea8ac5092fc 100644 --- a/src/Zcash/Entry.h +++ b/src/Zcash/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zcash/Signer.cpp b/src/Zcash/Signer.cpp index 37db9183ee8..341d1df51c5 100644 --- a/src/Zcash/Signer.cpp +++ b/src/Zcash/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zcash/Signer.h b/src/Zcash/Signer.h index f331652764a..af46ab6e259 100644 --- a/src/Zcash/Signer.h +++ b/src/Zcash/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zcash/TAddress.h b/src/Zcash/TAddress.h index 3452746b13f..cd8683e9541 100644 --- a/src/Zcash/TAddress.h +++ b/src/Zcash/TAddress.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Zcash/Transaction.cpp b/src/Zcash/Transaction.cpp index 291c3384370..e4d72009e93 100644 --- a/src/Zcash/Transaction.cpp +++ b/src/Zcash/Transaction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Zcash/Transaction.h b/src/Zcash/Transaction.h index 4086f3ddbea..86b0e3c4a1f 100644 --- a/src/Zcash/Transaction.h +++ b/src/Zcash/Transaction.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zcash/TransactionBuilder.h b/src/Zcash/TransactionBuilder.h index 02c8db82d57..9726378dcb5 100644 --- a/src/Zcash/TransactionBuilder.h +++ b/src/Zcash/TransactionBuilder.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Zilliqa/Address.cpp b/src/Zilliqa/Address.cpp index af0d14ac1bd..6612ef21523 100644 --- a/src/Zilliqa/Address.cpp +++ b/src/Zilliqa/Address.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Zilliqa/Address.h b/src/Zilliqa/Address.h index 8214e6aaebb..7184e5988a3 100644 --- a/src/Zilliqa/Address.h +++ b/src/Zilliqa/Address.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zilliqa/AddressChecksum.cpp b/src/Zilliqa/AddressChecksum.cpp index bbd072f6268..0f52452a3d0 100644 --- a/src/Zilliqa/AddressChecksum.cpp +++ b/src/Zilliqa/AddressChecksum.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Zilliqa/AddressChecksum.h b/src/Zilliqa/AddressChecksum.h index a91665deda1..bf0ed8df784 100644 --- a/src/Zilliqa/AddressChecksum.h +++ b/src/Zilliqa/AddressChecksum.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zilliqa/Entry.cpp b/src/Zilliqa/Entry.cpp index 3d4a09a635d..b8216779566 100644 --- a/src/Zilliqa/Entry.cpp +++ b/src/Zilliqa/Entry.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zilliqa/Entry.h b/src/Zilliqa/Entry.h index a19932b711c..ad1a6e00793 100644 --- a/src/Zilliqa/Entry.h +++ b/src/Zilliqa/Entry.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/Zilliqa/Signer.cpp b/src/Zilliqa/Signer.cpp index 521ffd5c556..3310a5d9920 100644 --- a/src/Zilliqa/Signer.cpp +++ b/src/Zilliqa/Signer.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/Zilliqa/Signer.h b/src/Zilliqa/Signer.h index c1ce6f9cfe6..5b60f30a17f 100644 --- a/src/Zilliqa/Signer.h +++ b/src/Zilliqa/Signer.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/algorithm/erase.h b/src/algorithm/erase.h index a01fe425ce2..5847a4e9ac4 100644 --- a/src/algorithm/erase.h +++ b/src/algorithm/erase.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/algorithm/sort_copy.h b/src/algorithm/sort_copy.h index 0b4dfeefe05..277aecaf73c 100644 --- a/src/algorithm/sort_copy.h +++ b/src/algorithm/sort_copy.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/algorithm/string.hpp b/src/algorithm/string.hpp index c5c1bfdfe79..18576071dcc 100644 --- a/src/algorithm/string.hpp +++ b/src/algorithm/string.hpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/algorithm/to_array.h b/src/algorithm/to_array.h index 06f302cd7e1..9c44c081fad 100644 --- a/src/algorithm/to_array.h +++ b/src/algorithm/to_array.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/concepts/tw_concepts.h b/src/concepts/tw_concepts.h index 57e2455a078..d2a5d6860d5 100644 --- a/src/concepts/tw_concepts.h +++ b/src/concepts/tw_concepts.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWAES.cpp b/src/interface/TWAES.cpp index 04f86c8faed..af7d228f65b 100644 --- a/src/interface/TWAES.cpp +++ b/src/interface/TWAES.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWAccount.cpp b/src/interface/TWAccount.cpp index 1759273d9a3..56d383b10d7 100644 --- a/src/interface/TWAccount.cpp +++ b/src/interface/TWAccount.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWAnyAddress.cpp b/src/interface/TWAnyAddress.cpp index aae4d7d1fbf..1f9212568b6 100644 --- a/src/interface/TWAnyAddress.cpp +++ b/src/interface/TWAnyAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/interface/TWAnySigner.cpp b/src/interface/TWAnySigner.cpp index 64f3dbcc382..d018a3c0cf2 100644 --- a/src/interface/TWAnySigner.cpp +++ b/src/interface/TWAnySigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWBase32.cpp b/src/interface/TWBase32.cpp index 6d2e89c342c..992d7b600e9 100644 --- a/src/interface/TWBase32.cpp +++ b/src/interface/TWBase32.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWBase58.cpp b/src/interface/TWBase58.cpp index e29779ed677..4545f088019 100644 --- a/src/interface/TWBase58.cpp +++ b/src/interface/TWBase58.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWBase64.cpp b/src/interface/TWBase64.cpp index c57a713e6e2..ae1fa0af4be 100644 --- a/src/interface/TWBase64.cpp +++ b/src/interface/TWBase64.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWBitcoinAddress.cpp b/src/interface/TWBitcoinAddress.cpp index cefd940e992..3e70ee3e6ab 100644 --- a/src/interface/TWBitcoinAddress.cpp +++ b/src/interface/TWBitcoinAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWBitcoinMessageSigner.cpp b/src/interface/TWBitcoinMessageSigner.cpp index d5b0985fbb1..01243bad9ac 100644 --- a/src/interface/TWBitcoinMessageSigner.cpp +++ b/src/interface/TWBitcoinMessageSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWBitcoinScript.cpp b/src/interface/TWBitcoinScript.cpp index fb0fb321147..1150abb28a2 100644 --- a/src/interface/TWBitcoinScript.cpp +++ b/src/interface/TWBitcoinScript.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/interface/TWBitcoinSigHashType.cpp b/src/interface/TWBitcoinSigHashType.cpp index d6cf837ce7e..bfcaf9939bb 100644 --- a/src/interface/TWBitcoinSigHashType.cpp +++ b/src/interface/TWBitcoinSigHashType.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWCardano.cpp b/src/interface/TWCardano.cpp index 9c1c43ed16d..fa93a2da383 100644 --- a/src/interface/TWCardano.cpp +++ b/src/interface/TWCardano.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWCoinType.cpp b/src/interface/TWCoinType.cpp index e63373a98c8..8e6a2e9c151 100644 --- a/src/interface/TWCoinType.cpp +++ b/src/interface/TWCoinType.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWData.cpp b/src/interface/TWData.cpp index b08b5e7cb94..4379ced2f43 100644 --- a/src/interface/TWData.cpp +++ b/src/interface/TWData.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWDataVector.cpp b/src/interface/TWDataVector.cpp index bea89cc1dac..d17148f8cfd 100644 --- a/src/interface/TWDataVector.cpp +++ b/src/interface/TWDataVector.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWDerivationPath.cpp b/src/interface/TWDerivationPath.cpp index f48bc051d77..b52ca0eff58 100644 --- a/src/interface/TWDerivationPath.cpp +++ b/src/interface/TWDerivationPath.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWDerivationPathIndex.cpp b/src/interface/TWDerivationPathIndex.cpp index f443955191e..ba06751d370 100644 --- a/src/interface/TWDerivationPathIndex.cpp +++ b/src/interface/TWDerivationPathIndex.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWEthereumAbi.cpp b/src/interface/TWEthereumAbi.cpp index 2ea781199eb..24ed89d8138 100644 --- a/src/interface/TWEthereumAbi.cpp +++ b/src/interface/TWEthereumAbi.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWEthereumAbiFunction.cpp b/src/interface/TWEthereumAbiFunction.cpp index 3951b949f5b..01fe3ef7816 100644 --- a/src/interface/TWEthereumAbiFunction.cpp +++ b/src/interface/TWEthereumAbiFunction.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWEthereumAbiValue.cpp b/src/interface/TWEthereumAbiValue.cpp index a3dc02612af..12ed7cac7da 100644 --- a/src/interface/TWEthereumAbiValue.cpp +++ b/src/interface/TWEthereumAbiValue.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWEthereumMessageSigner.cpp b/src/interface/TWEthereumMessageSigner.cpp index 75ce9f884e4..ee0aafd5009 100644 --- a/src/interface/TWEthereumMessageSigner.cpp +++ b/src/interface/TWEthereumMessageSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWFIOAccount.cpp b/src/interface/TWFIOAccount.cpp index 4cdd419aa71..575e96d0d80 100644 --- a/src/interface/TWFIOAccount.cpp +++ b/src/interface/TWFIOAccount.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWGroestlcoinAddress.cpp b/src/interface/TWGroestlcoinAddress.cpp index e825cc591f1..300d18055e2 100644 --- a/src/interface/TWGroestlcoinAddress.cpp +++ b/src/interface/TWGroestlcoinAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWHDVersion.cpp b/src/interface/TWHDVersion.cpp index e093336537a..abd8b2929ba 100644 --- a/src/interface/TWHDVersion.cpp +++ b/src/interface/TWHDVersion.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWHDWallet.cpp b/src/interface/TWHDWallet.cpp index 3be263eb5ee..c874b1ae6f2 100644 --- a/src/interface/TWHDWallet.cpp +++ b/src/interface/TWHDWallet.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWHash.cpp b/src/interface/TWHash.cpp index fc442c13fcd..19aa0aeee39 100644 --- a/src/interface/TWHash.cpp +++ b/src/interface/TWHash.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWMnemonic.cpp b/src/interface/TWMnemonic.cpp index f966a26ad4e..630a3823490 100644 --- a/src/interface/TWMnemonic.cpp +++ b/src/interface/TWMnemonic.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/interface/TWNEARAccount.cpp b/src/interface/TWNEARAccount.cpp index 84dca468ef0..588a303ce5c 100644 --- a/src/interface/TWNEARAccount.cpp +++ b/src/interface/TWNEARAccount.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWNervosAddress.cpp b/src/interface/TWNervosAddress.cpp index 963ddf763ff..68ca562fb93 100644 --- a/src/interface/TWNervosAddress.cpp +++ b/src/interface/TWNervosAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWPBKDF2.cpp b/src/interface/TWPBKDF2.cpp index 2ea0e4be9ec..01ea4f00186 100644 --- a/src/interface/TWPBKDF2.cpp +++ b/src/interface/TWPBKDF2.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWPrivateKey.cpp b/src/interface/TWPrivateKey.cpp index 08e9eb49490..701541096f3 100644 --- a/src/interface/TWPrivateKey.cpp +++ b/src/interface/TWPrivateKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWPublicKey.cpp b/src/interface/TWPublicKey.cpp index 61ada495ab1..114abec5c1c 100644 --- a/src/interface/TWPublicKey.cpp +++ b/src/interface/TWPublicKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWRippleXAddress.cpp b/src/interface/TWRippleXAddress.cpp index f003e5614a0..93fbf42ffd5 100644 --- a/src/interface/TWRippleXAddress.cpp +++ b/src/interface/TWRippleXAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWSegwitAddress.cpp b/src/interface/TWSegwitAddress.cpp index 59a41db467e..e9e891d7627 100644 --- a/src/interface/TWSegwitAddress.cpp +++ b/src/interface/TWSegwitAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWSolanaAddress.cpp b/src/interface/TWSolanaAddress.cpp index df311698057..000cf0d848f 100644 --- a/src/interface/TWSolanaAddress.cpp +++ b/src/interface/TWSolanaAddress.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWStarkExMessageSigner.cpp b/src/interface/TWStarkExMessageSigner.cpp index 04502acf234..caca3ac8e55 100644 --- a/src/interface/TWStarkExMessageSigner.cpp +++ b/src/interface/TWStarkExMessageSigner.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWStarkWare.cpp b/src/interface/TWStarkWare.cpp index ede9644fa04..fa1a41bb499 100644 --- a/src/interface/TWStarkWare.cpp +++ b/src/interface/TWStarkWare.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWStoredKey.cpp b/src/interface/TWStoredKey.cpp index d07378fb9e4..f06c11cbc03 100644 --- a/src/interface/TWStoredKey.cpp +++ b/src/interface/TWStoredKey.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWString+Hex.cpp b/src/interface/TWString+Hex.cpp index 65021dcaeb9..8a62347b97f 100644 --- a/src/interface/TWString+Hex.cpp +++ b/src/interface/TWString+Hex.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWString.cpp b/src/interface/TWString.cpp index 2812a1c94d1..ccd0f267dfd 100644 --- a/src/interface/TWString.cpp +++ b/src/interface/TWString.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/interface/TWTransactionCompiler.cpp b/src/interface/TWTransactionCompiler.cpp index 0b5b45e52a1..f7a586d5eef 100644 --- a/src/interface/TWTransactionCompiler.cpp +++ b/src/interface/TWTransactionCompiler.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/interface/TWTronMessageSigner.cpp b/src/interface/TWTronMessageSigner.cpp new file mode 100644 index 00000000000..8fab380810e --- /dev/null +++ b/src/interface/TWTronMessageSigner.cpp @@ -0,0 +1,21 @@ +// 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. + +#include +#include "Tron/MessageSigner.h" + +TWString* _Nonnull TWTronMessageSignerSignMessage(const struct TWPrivateKey* _Nonnull privateKey, TWString* _Nonnull message) { + try { + const auto signature = TW::Tron::MessageSigner::signMessage(privateKey->impl, TWStringUTF8Bytes(message)); + return TWStringCreateWithUTF8Bytes(signature.c_str()); + } catch (...) { + return TWStringCreateWithUTF8Bytes(""); + } +} + +bool TWTronMessageSignerVerifyMessage(const struct TWPublicKey* _Nonnull publicKey, TWString* _Nonnull message, TWString* _Nonnull signature) { + return TW::Tron::MessageSigner::verifyMessage(publicKey->impl, TWStringUTF8Bytes(message), TWStringUTF8Bytes(signature)); +} diff --git a/src/memory/memzero_wrapper.h b/src/memory/memzero_wrapper.h index be8c7859e4d..1931b040f84 100644 --- a/src/memory/memzero_wrapper.h +++ b/src/memory/memzero_wrapper.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/operators/equality_comparable.h b/src/operators/equality_comparable.h index aa2fd02f34b..561b6ddc8d6 100644 --- a/src/operators/equality_comparable.h +++ b/src/operators/equality_comparable.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/proto/Aptos.proto b/src/proto/Aptos.proto index 1972c1ea349..72b61433d16 100644 --- a/src/proto/Aptos.proto +++ b/src/proto/Aptos.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/proto/Everscale.proto b/src/proto/Everscale.proto index 54ed4bb825c..45d7ab5357d 100644 --- a/src/proto/Everscale.proto +++ b/src/proto/Everscale.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/proto/Hedera.proto b/src/proto/Hedera.proto index ff9a2746eaf..64f01b9f68e 100644 --- a/src/proto/Hedera.proto +++ b/src/proto/Hedera.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/proto/MultiversX.proto b/src/proto/MultiversX.proto index 42dfcd26752..c91481b0e0e 100644 --- a/src/proto/MultiversX.proto +++ b/src/proto/MultiversX.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/proto/Nervos.proto b/src/proto/Nervos.proto index 07cc53060d0..b58a66558bb 100644 --- a/src/proto/Nervos.proto +++ b/src/proto/Nervos.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/src/proto/Oasis.proto b/src/proto/Oasis.proto index 316f6e295df..9391bb81d9b 100644 --- a/src/proto/Oasis.proto +++ b/src/proto/Oasis.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/src/proto/Sui.proto b/src/proto/Sui.proto index ae68ccf2367..dea0161e005 100644 --- a/src/proto/Sui.proto +++ b/src/proto/Sui.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/proto/TheOpenNetwork.proto b/src/proto/TheOpenNetwork.proto index 12d818a828c..995bd3d3f82 100644 --- a/src/proto/TheOpenNetwork.proto +++ b/src/proto/TheOpenNetwork.proto @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/src/uint256.h b/src/uint256.h index 46159abb2cd..06f33ae4708 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/swift/Tests/Blockchains/TronTests.swift b/swift/Tests/Blockchains/TronTests.swift index 897c9787973..5dad3ef3fa3 100644 --- a/swift/Tests/Blockchains/TronTests.swift +++ b/swift/Tests/Blockchains/TronTests.swift @@ -64,4 +64,13 @@ class TronTests: XCTestCase { """ XCTAssertJSONEqual(output.json, expectedJSON) } + + func testMessageAndVerifySigner() { + let privateKey = PrivateKey(data: Data(hexString: "75065f100e38d3f3b4c5c4235834ba8216de62272a4f03532c44b31a5734360a")!)! + let msg = "Hello World" + let signature = TronMessageSigner.signMessage(privateKey: privateKey, message: msg) + XCTAssertEqual(signature, "9bb6d11ec8a6a3fb686a8f55b123e7ec4e9746a26157f6f9e854dd72f5683b450397a7b0a9653865658de8f9243f877539882891bad30c7286c3bf5622b900471b") + let pubKey = privateKey.getPublicKey(coinType: .tron) + XCTAssertTrue(TronMessageSigner.verifyMessage(pubKey: pubKey, message: msg, signature: signature)) + } } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b48482ab71b..4826841ebcd 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright © 2017-2022 Trust Wallet. +# 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 diff --git a/tests/chains/Acala/TWAnyAddressTests.cpp b/tests/chains/Acala/TWAnyAddressTests.cpp index 47f9a823974..dfa83bee00d 100644 --- a/tests/chains/Acala/TWAnyAddressTests.cpp +++ b/tests/chains/Acala/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aeternity/AddressTests.cpp b/tests/chains/Aeternity/AddressTests.cpp index 753e0b39204..bfd77019330 100644 --- a/tests/chains/Aeternity/AddressTests.cpp +++ b/tests/chains/Aeternity/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aeternity/SignerTests.cpp b/tests/chains/Aeternity/SignerTests.cpp index 55f9246fd3b..2564d9b6710 100644 --- a/tests/chains/Aeternity/SignerTests.cpp +++ b/tests/chains/Aeternity/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aeternity/TWAeternityAddressTests.cpp b/tests/chains/Aeternity/TWAeternityAddressTests.cpp index b801091634c..5b6def18a98 100644 --- a/tests/chains/Aeternity/TWAeternityAddressTests.cpp +++ b/tests/chains/Aeternity/TWAeternityAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Aeternity/TWAnySignerTests.cpp b/tests/chains/Aeternity/TWAnySignerTests.cpp index 9a1f716447f..ad43b964a00 100644 --- a/tests/chains/Aeternity/TWAnySignerTests.cpp +++ b/tests/chains/Aeternity/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aeternity/TWCoinTypeTests.cpp b/tests/chains/Aeternity/TWCoinTypeTests.cpp index 7e9f16603ca..345ed187cf5 100644 --- a/tests/chains/Aeternity/TWCoinTypeTests.cpp +++ b/tests/chains/Aeternity/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Aeternity/TransactionTests.cpp b/tests/chains/Aeternity/TransactionTests.cpp index fa50abb449f..d410eca2732 100644 --- a/tests/chains/Aeternity/TransactionTests.cpp +++ b/tests/chains/Aeternity/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Agoric/AddressTests.cpp b/tests/chains/Agoric/AddressTests.cpp index 4e18f242374..636faa3ab65 100644 --- a/tests/chains/Agoric/AddressTests.cpp +++ b/tests/chains/Agoric/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Agoric/TWCoinTypeTests.cpp b/tests/chains/Agoric/TWCoinTypeTests.cpp index d113c5e1ef3..bcca563f288 100644 --- a/tests/chains/Agoric/TWCoinTypeTests.cpp +++ b/tests/chains/Agoric/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aion/AddressTests.cpp b/tests/chains/Aion/AddressTests.cpp index d773b092f4d..d0ac730ce6e 100644 --- a/tests/chains/Aion/AddressTests.cpp +++ b/tests/chains/Aion/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Aion/RLPTests.cpp b/tests/chains/Aion/RLPTests.cpp index 86df3146ace..cda4a23fbbd 100644 --- a/tests/chains/Aion/RLPTests.cpp +++ b/tests/chains/Aion/RLPTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aion/SignerTests.cpp b/tests/chains/Aion/SignerTests.cpp index 34d44504db7..cb27f4a846d 100644 --- a/tests/chains/Aion/SignerTests.cpp +++ b/tests/chains/Aion/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aion/TWAnySignerTests.cpp b/tests/chains/Aion/TWAnySignerTests.cpp index 5b7f3417014..44f4025beb7 100644 --- a/tests/chains/Aion/TWAnySignerTests.cpp +++ b/tests/chains/Aion/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aion/TWCoinTypeTests.cpp b/tests/chains/Aion/TWCoinTypeTests.cpp index 9d217c0654f..1ac08c1acc9 100644 --- a/tests/chains/Aion/TWCoinTypeTests.cpp +++ b/tests/chains/Aion/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Aion/TransactionTests.cpp b/tests/chains/Aion/TransactionTests.cpp index 9b9ff818758..054c5a85008 100644 --- a/tests/chains/Aion/TransactionTests.cpp +++ b/tests/chains/Aion/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Algorand/AddressTests.cpp b/tests/chains/Algorand/AddressTests.cpp index 6edff289604..edc98e23735 100644 --- a/tests/chains/Algorand/AddressTests.cpp +++ b/tests/chains/Algorand/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Algorand/SignerTests.cpp b/tests/chains/Algorand/SignerTests.cpp index d3efef06418..2902ba20d33 100644 --- a/tests/chains/Algorand/SignerTests.cpp +++ b/tests/chains/Algorand/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Algorand/TWAnySignerTests.cpp b/tests/chains/Algorand/TWAnySignerTests.cpp index 3890bafcfeb..238efed93ee 100644 --- a/tests/chains/Algorand/TWAnySignerTests.cpp +++ b/tests/chains/Algorand/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Algorand/TWCoinTypeTests.cpp b/tests/chains/Algorand/TWCoinTypeTests.cpp index 26d33c3670f..51334046e72 100644 --- a/tests/chains/Algorand/TWCoinTypeTests.cpp +++ b/tests/chains/Algorand/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Aptos/AddressTests.cpp b/tests/chains/Aptos/AddressTests.cpp index 1267ea72cdd..e4316b4eec2 100644 --- a/tests/chains/Aptos/AddressTests.cpp +++ b/tests/chains/Aptos/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // Author: Clement Doumergue // // This file is part of Trust. The full Trust copyright notice, including diff --git a/tests/chains/Aptos/MoveTypesTests.cpp b/tests/chains/Aptos/MoveTypesTests.cpp index 3c7fded5d17..06ef076991c 100644 --- a/tests/chains/Aptos/MoveTypesTests.cpp +++ b/tests/chains/Aptos/MoveTypesTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aptos/SignerTests.cpp b/tests/chains/Aptos/SignerTests.cpp index 544240a7cfc..821cc80c528 100644 --- a/tests/chains/Aptos/SignerTests.cpp +++ b/tests/chains/Aptos/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aptos/TWAnySignerTests.cpp b/tests/chains/Aptos/TWAnySignerTests.cpp index e97b0977d9f..28f260970b6 100644 --- a/tests/chains/Aptos/TWAnySignerTests.cpp +++ b/tests/chains/Aptos/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aptos/TWAptosAddressTests.cpp b/tests/chains/Aptos/TWAptosAddressTests.cpp index e03407f5c56..2b9e3fd8047 100644 --- a/tests/chains/Aptos/TWAptosAddressTests.cpp +++ b/tests/chains/Aptos/TWAptosAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aptos/TWCoinTypeTests.cpp b/tests/chains/Aptos/TWCoinTypeTests.cpp index 25f89208b5d..16934dd916a 100644 --- a/tests/chains/Aptos/TWCoinTypeTests.cpp +++ b/tests/chains/Aptos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Aptos/TransactionPayloadTests.cpp b/tests/chains/Aptos/TransactionPayloadTests.cpp index 4e8203e07bb..45b501230c3 100644 --- a/tests/chains/Aptos/TransactionPayloadTests.cpp +++ b/tests/chains/Aptos/TransactionPayloadTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Arbitrum/TWCoinTypeTests.cpp b/tests/chains/Arbitrum/TWCoinTypeTests.cpp index bab96f946ff..4bc00aa468b 100644 --- a/tests/chains/Arbitrum/TWCoinTypeTests.cpp +++ b/tests/chains/Arbitrum/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Aurora/TWCoinTypeTests.cpp b/tests/chains/Aurora/TWCoinTypeTests.cpp index b612ce508ce..af42dd3027b 100644 --- a/tests/chains/Aurora/TWCoinTypeTests.cpp +++ b/tests/chains/Aurora/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Avalanche/TWCoinTypeTests.cpp b/tests/chains/Avalanche/TWCoinTypeTests.cpp index 8bf54001455..329a9b69da4 100644 --- a/tests/chains/Avalanche/TWCoinTypeTests.cpp +++ b/tests/chains/Avalanche/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/BandChain/TWCoinTypeTests.cpp b/tests/chains/BandChain/TWCoinTypeTests.cpp index f6ad4c690c0..e124952c713 100644 --- a/tests/chains/BandChain/TWCoinTypeTests.cpp +++ b/tests/chains/BandChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Binance/SignerTests.cpp b/tests/chains/Binance/SignerTests.cpp index cba2b1a48a5..f28b4e0e289 100644 --- a/tests/chains/Binance/SignerTests.cpp +++ b/tests/chains/Binance/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Binance/TWAnySignerTests.cpp b/tests/chains/Binance/TWAnySignerTests.cpp index 84193da844a..d5f4de77c04 100644 --- a/tests/chains/Binance/TWAnySignerTests.cpp +++ b/tests/chains/Binance/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Binance/TWCoinTypeTests.cpp b/tests/chains/Binance/TWCoinTypeTests.cpp index 2059c040c6b..8930e317212 100644 --- a/tests/chains/Binance/TWCoinTypeTests.cpp +++ b/tests/chains/Binance/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BinanceSmartChain/SignerTests.cpp b/tests/chains/BinanceSmartChain/SignerTests.cpp index 6303410de22..1ce61b7fd27 100644 --- a/tests/chains/BinanceSmartChain/SignerTests.cpp +++ b/tests/chains/BinanceSmartChain/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/BinanceSmartChain/TWAnyAddressTests.cpp b/tests/chains/BinanceSmartChain/TWAnyAddressTests.cpp index 747f722a61e..a0cc87948d2 100644 --- a/tests/chains/BinanceSmartChain/TWAnyAddressTests.cpp +++ b/tests/chains/BinanceSmartChain/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BinanceSmartChain/TWCoinTypeTests.cpp b/tests/chains/BinanceSmartChain/TWCoinTypeTests.cpp index f48a6b1e56e..aa44abba026 100644 --- a/tests/chains/BinanceSmartChain/TWCoinTypeTests.cpp +++ b/tests/chains/BinanceSmartChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/BitcoinAddressTests.cpp b/tests/chains/Bitcoin/BitcoinAddressTests.cpp index dd769f6a29e..bf2036dd7de 100644 --- a/tests/chains/Bitcoin/BitcoinAddressTests.cpp +++ b/tests/chains/Bitcoin/BitcoinAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/BitcoinScriptTests.cpp b/tests/chains/Bitcoin/BitcoinScriptTests.cpp index 599a0ea44b8..b790c092a14 100644 --- a/tests/chains/Bitcoin/BitcoinScriptTests.cpp +++ b/tests/chains/Bitcoin/BitcoinScriptTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/FeeCalculatorTests.cpp b/tests/chains/Bitcoin/FeeCalculatorTests.cpp index 93ea4013e77..d932866186f 100644 --- a/tests/chains/Bitcoin/FeeCalculatorTests.cpp +++ b/tests/chains/Bitcoin/FeeCalculatorTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/InputSelectorTests.cpp b/tests/chains/Bitcoin/InputSelectorTests.cpp index 1f66fedeec5..ef1fd80552c 100644 --- a/tests/chains/Bitcoin/InputSelectorTests.cpp +++ b/tests/chains/Bitcoin/InputSelectorTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/MessageSignerTests.cpp b/tests/chains/Bitcoin/MessageSignerTests.cpp index df617721300..06ea622d8b2 100644 --- a/tests/chains/Bitcoin/MessageSignerTests.cpp +++ b/tests/chains/Bitcoin/MessageSignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/SegwitAddressTests.cpp b/tests/chains/Bitcoin/SegwitAddressTests.cpp index 3180eef8337..3c7408cb3f0 100644 --- a/tests/chains/Bitcoin/SegwitAddressTests.cpp +++ b/tests/chains/Bitcoin/SegwitAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TWBitcoinAddressTests.cpp b/tests/chains/Bitcoin/TWBitcoinAddressTests.cpp index 13c96dc5a5c..f51a5464b51 100644 --- a/tests/chains/Bitcoin/TWBitcoinAddressTests.cpp +++ b/tests/chains/Bitcoin/TWBitcoinAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TWBitcoinScriptTests.cpp b/tests/chains/Bitcoin/TWBitcoinScriptTests.cpp index 9d1aa7f4ce0..560400f1f4d 100644 --- a/tests/chains/Bitcoin/TWBitcoinScriptTests.cpp +++ b/tests/chains/Bitcoin/TWBitcoinScriptTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TWBitcoinSigningTests.cpp b/tests/chains/Bitcoin/TWBitcoinSigningTests.cpp index 5970e98caca..06d2ff9daf8 100644 --- a/tests/chains/Bitcoin/TWBitcoinSigningTests.cpp +++ b/tests/chains/Bitcoin/TWBitcoinSigningTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TWBitcoinTransactionTests.cpp b/tests/chains/Bitcoin/TWBitcoinTransactionTests.cpp index 8df4be05c54..19d3d3e4338 100644 --- a/tests/chains/Bitcoin/TWBitcoinTransactionTests.cpp +++ b/tests/chains/Bitcoin/TWBitcoinTransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TWCoinTypeTests.cpp b/tests/chains/Bitcoin/TWCoinTypeTests.cpp index 3ce30dd594b..88d4a71ec1b 100644 --- a/tests/chains/Bitcoin/TWCoinTypeTests.cpp +++ b/tests/chains/Bitcoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TWSegwitAddressTests.cpp b/tests/chains/Bitcoin/TWSegwitAddressTests.cpp index 65c632ca6b9..88a16bfa805 100644 --- a/tests/chains/Bitcoin/TWSegwitAddressTests.cpp +++ b/tests/chains/Bitcoin/TWSegwitAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TransactionPlanTests.cpp b/tests/chains/Bitcoin/TransactionPlanTests.cpp index d906c863056..0f5c1a110c1 100644 --- a/tests/chains/Bitcoin/TransactionPlanTests.cpp +++ b/tests/chains/Bitcoin/TransactionPlanTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TxComparisonHelper.cpp b/tests/chains/Bitcoin/TxComparisonHelper.cpp index f99fae78c82..db1f603610e 100644 --- a/tests/chains/Bitcoin/TxComparisonHelper.cpp +++ b/tests/chains/Bitcoin/TxComparisonHelper.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bitcoin/TxComparisonHelper.h b/tests/chains/Bitcoin/TxComparisonHelper.h index 4cb2f92a1d2..85b8c877c53 100644 --- a/tests/chains/Bitcoin/TxComparisonHelper.h +++ b/tests/chains/Bitcoin/TxComparisonHelper.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinCash/TWBitcoinCashTests.cpp b/tests/chains/BitcoinCash/TWBitcoinCashTests.cpp index 19f6fc564d4..c097120b5b9 100644 --- a/tests/chains/BitcoinCash/TWBitcoinCashTests.cpp +++ b/tests/chains/BitcoinCash/TWBitcoinCashTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinCash/TWCoinTypeTests.cpp b/tests/chains/BitcoinCash/TWCoinTypeTests.cpp index 666aa70328c..5a7749c9789 100644 --- a/tests/chains/BitcoinCash/TWCoinTypeTests.cpp +++ b/tests/chains/BitcoinCash/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinGold/TWAddressTests.cpp b/tests/chains/BitcoinGold/TWAddressTests.cpp index 977c77900e1..be7a676b460 100644 --- a/tests/chains/BitcoinGold/TWAddressTests.cpp +++ b/tests/chains/BitcoinGold/TWAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinGold/TWBitcoinGoldTests.cpp b/tests/chains/BitcoinGold/TWBitcoinGoldTests.cpp index d0285c3b2c9..daf3df1d564 100644 --- a/tests/chains/BitcoinGold/TWBitcoinGoldTests.cpp +++ b/tests/chains/BitcoinGold/TWBitcoinGoldTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinGold/TWCoinTypeTests.cpp b/tests/chains/BitcoinGold/TWCoinTypeTests.cpp index 5ab3db7a03b..25b900369db 100644 --- a/tests/chains/BitcoinGold/TWCoinTypeTests.cpp +++ b/tests/chains/BitcoinGold/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinGold/TWSegwitAddressTests.cpp b/tests/chains/BitcoinGold/TWSegwitAddressTests.cpp index 0f8c1413fe1..3f7fc51cb2a 100644 --- a/tests/chains/BitcoinGold/TWSegwitAddressTests.cpp +++ b/tests/chains/BitcoinGold/TWSegwitAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/BitcoinGold/TWSignerTests.cpp b/tests/chains/BitcoinGold/TWSignerTests.cpp index ad8497ffdf6..41ef63adedf 100644 --- a/tests/chains/BitcoinGold/TWSignerTests.cpp +++ b/tests/chains/BitcoinGold/TWSignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Bluzelle/TWCoinTypeTests.cpp b/tests/chains/Bluzelle/TWCoinTypeTests.cpp index 09dcb1aed7b..c28de7f82c0 100644 --- a/tests/chains/Bluzelle/TWCoinTypeTests.cpp +++ b/tests/chains/Bluzelle/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Boba/TWCoinTypeTests.cpp b/tests/chains/Boba/TWCoinTypeTests.cpp index 9d9d27f52cf..28e41e02f47 100644 --- a/tests/chains/Boba/TWCoinTypeTests.cpp +++ b/tests/chains/Boba/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Callisto/TWCoinTypeTests.cpp b/tests/chains/Callisto/TWCoinTypeTests.cpp index e742718974f..2c1db281db0 100644 --- a/tests/chains/Callisto/TWCoinTypeTests.cpp +++ b/tests/chains/Callisto/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Cardano/AddressTests.cpp b/tests/chains/Cardano/AddressTests.cpp index 8a8918fe6c9..34b1e4da3ae 100644 --- a/tests/chains/Cardano/AddressTests.cpp +++ b/tests/chains/Cardano/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cardano/SigningTests.cpp b/tests/chains/Cardano/SigningTests.cpp index 79b1fe0072c..e46c3f06950 100644 --- a/tests/chains/Cardano/SigningTests.cpp +++ b/tests/chains/Cardano/SigningTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cardano/StakingTests.cpp b/tests/chains/Cardano/StakingTests.cpp index cf7636b23c5..686f56fede9 100644 --- a/tests/chains/Cardano/StakingTests.cpp +++ b/tests/chains/Cardano/StakingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cardano/TWCardanoAddressTests.cpp b/tests/chains/Cardano/TWCardanoAddressTests.cpp index 709cba08745..50a3d11131a 100644 --- a/tests/chains/Cardano/TWCardanoAddressTests.cpp +++ b/tests/chains/Cardano/TWCardanoAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Cardano/TWCoinTypeTests.cpp b/tests/chains/Cardano/TWCoinTypeTests.cpp index 33f8c9e197d..c8ecdf8109f 100644 --- a/tests/chains/Cardano/TWCoinTypeTests.cpp +++ b/tests/chains/Cardano/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Cardano/TransactionTests.cpp b/tests/chains/Cardano/TransactionTests.cpp index 702a32ce77a..d44a789b266 100644 --- a/tests/chains/Cardano/TransactionTests.cpp +++ b/tests/chains/Cardano/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Celo/TWCoinTypeTests.cpp b/tests/chains/Celo/TWCoinTypeTests.cpp index 35fd5a76d73..9ee45657c5b 100644 --- a/tests/chains/Celo/TWCoinTypeTests.cpp +++ b/tests/chains/Celo/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/AddressTests.cpp b/tests/chains/Cosmos/AddressTests.cpp index a50d7596730..9df79329d80 100644 --- a/tests/chains/Cosmos/AddressTests.cpp +++ b/tests/chains/Cosmos/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/ProtobufTests.cpp b/tests/chains/Cosmos/ProtobufTests.cpp index 89b36346ac5..a23dd4da33b 100644 --- a/tests/chains/Cosmos/ProtobufTests.cpp +++ b/tests/chains/Cosmos/ProtobufTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/SignerTests.cpp b/tests/chains/Cosmos/SignerTests.cpp index d9202607cc0..22e5d64dce1 100644 --- a/tests/chains/Cosmos/SignerTests.cpp +++ b/tests/chains/Cosmos/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/StakingTests.cpp b/tests/chains/Cosmos/StakingTests.cpp index 0abee814e66..c409e5c4ad2 100644 --- a/tests/chains/Cosmos/StakingTests.cpp +++ b/tests/chains/Cosmos/StakingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/TWAnyAddressTests.cpp b/tests/chains/Cosmos/TWAnyAddressTests.cpp index 27559eff580..d05919a62cf 100644 --- a/tests/chains/Cosmos/TWAnyAddressTests.cpp +++ b/tests/chains/Cosmos/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/TWAnySignerTests.cpp b/tests/chains/Cosmos/TWAnySignerTests.cpp index 014bd26d4f4..422248f9eb7 100644 --- a/tests/chains/Cosmos/TWAnySignerTests.cpp +++ b/tests/chains/Cosmos/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cosmos/TWCoinTypeTests.cpp b/tests/chains/Cosmos/TWCoinTypeTests.cpp index 228564d05d3..e51876c3d65 100644 --- a/tests/chains/Cosmos/TWCoinTypeTests.cpp +++ b/tests/chains/Cosmos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Cronos/TWAnyAddressTests.cpp b/tests/chains/Cronos/TWAnyAddressTests.cpp index 115c061283f..df3c573e96b 100644 --- a/tests/chains/Cronos/TWAnyAddressTests.cpp +++ b/tests/chains/Cronos/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Cronos/TWCoinTypeTests.cpp b/tests/chains/Cronos/TWCoinTypeTests.cpp index b3f60a93b58..0ebc2dfa068 100644 --- a/tests/chains/Cronos/TWCoinTypeTests.cpp +++ b/tests/chains/Cronos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/CryptoOrg/AddressTests.cpp b/tests/chains/CryptoOrg/AddressTests.cpp index 8bd3bfdd62f..5db7dbe8d39 100644 --- a/tests/chains/CryptoOrg/AddressTests.cpp +++ b/tests/chains/CryptoOrg/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/CryptoOrg/SignerTests.cpp b/tests/chains/CryptoOrg/SignerTests.cpp index bfc9dc634b5..fa6793727c9 100644 --- a/tests/chains/CryptoOrg/SignerTests.cpp +++ b/tests/chains/CryptoOrg/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/CryptoOrg/TWAnyAddressTests.cpp b/tests/chains/CryptoOrg/TWAnyAddressTests.cpp index 4af5812a464..b4213ac7e77 100644 --- a/tests/chains/CryptoOrg/TWAnyAddressTests.cpp +++ b/tests/chains/CryptoOrg/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/CryptoOrg/TWAnySignerTests.cpp b/tests/chains/CryptoOrg/TWAnySignerTests.cpp index 62519f35671..ad38fd921ed 100644 --- a/tests/chains/CryptoOrg/TWAnySignerTests.cpp +++ b/tests/chains/CryptoOrg/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/CryptoOrg/TWCoinTypeTests.cpp b/tests/chains/CryptoOrg/TWCoinTypeTests.cpp index 0e19d390f0b..eb0ac2f4f84 100644 --- a/tests/chains/CryptoOrg/TWCoinTypeTests.cpp +++ b/tests/chains/CryptoOrg/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Dash/TWCoinTypeTests.cpp b/tests/chains/Dash/TWCoinTypeTests.cpp index 9995965fda6..aa99c4d138b 100644 --- a/tests/chains/Dash/TWCoinTypeTests.cpp +++ b/tests/chains/Dash/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Dash/TWDashTests.cpp b/tests/chains/Dash/TWDashTests.cpp index a0d86239464..0fe1335f1f6 100644 --- a/tests/chains/Dash/TWDashTests.cpp +++ b/tests/chains/Dash/TWDashTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Decred/AddressTests.cpp b/tests/chains/Decred/AddressTests.cpp index 9629a821d21..72de5c191fb 100644 --- a/tests/chains/Decred/AddressTests.cpp +++ b/tests/chains/Decred/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Decred/SignerTests.cpp b/tests/chains/Decred/SignerTests.cpp index 94e6a3f9b73..a9de34e35c9 100644 --- a/tests/chains/Decred/SignerTests.cpp +++ b/tests/chains/Decred/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Decred/TWAnySignerTests.cpp b/tests/chains/Decred/TWAnySignerTests.cpp index 2960a5fcb1c..08ba5bc332e 100644 --- a/tests/chains/Decred/TWAnySignerTests.cpp +++ b/tests/chains/Decred/TWAnySignerTests.cpp @@ -1,5 +1,5 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Decred/TWCoinTypeTests.cpp b/tests/chains/Decred/TWCoinTypeTests.cpp index f355997d41b..592a69ba83d 100644 --- a/tests/chains/Decred/TWCoinTypeTests.cpp +++ b/tests/chains/Decred/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Decred/TWDecredTests.cpp b/tests/chains/Decred/TWDecredTests.cpp index 661420c887c..141d8c4731b 100644 --- a/tests/chains/Decred/TWDecredTests.cpp +++ b/tests/chains/Decred/TWDecredTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/DigiByte/TWCoinTypeTests.cpp b/tests/chains/DigiByte/TWCoinTypeTests.cpp index 46d2adfa5de..aa17445e336 100644 --- a/tests/chains/DigiByte/TWCoinTypeTests.cpp +++ b/tests/chains/DigiByte/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/DigiByte/TWDigiByteTests.cpp b/tests/chains/DigiByte/TWDigiByteTests.cpp index 1c40d8815a9..0548aa115ec 100644 --- a/tests/chains/DigiByte/TWDigiByteTests.cpp +++ b/tests/chains/DigiByte/TWDigiByteTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Dogecoin/TWCoinTypeTests.cpp b/tests/chains/Dogecoin/TWCoinTypeTests.cpp index 3196965f758..b816cb968a7 100644 --- a/tests/chains/Dogecoin/TWCoinTypeTests.cpp +++ b/tests/chains/Dogecoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Dogecoin/TWDogeTests.cpp b/tests/chains/Dogecoin/TWDogeTests.cpp index 627fc78a72e..185a1a773a2 100644 --- a/tests/chains/Dogecoin/TWDogeTests.cpp +++ b/tests/chains/Dogecoin/TWDogeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/ECO/TWCoinTypeTests.cpp b/tests/chains/ECO/TWCoinTypeTests.cpp index a72cb7b7877..af76592af3a 100644 --- a/tests/chains/ECO/TWCoinTypeTests.cpp +++ b/tests/chains/ECO/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/ECash/TWCoinTypeTests.cpp b/tests/chains/ECash/TWCoinTypeTests.cpp index d8f9305bc12..a767b14c3e5 100644 --- a/tests/chains/ECash/TWCoinTypeTests.cpp +++ b/tests/chains/ECash/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/AddressTests.cpp b/tests/chains/EOS/AddressTests.cpp index e11efc7feeb..14c41a2e0e0 100644 --- a/tests/chains/EOS/AddressTests.cpp +++ b/tests/chains/EOS/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/AssetTests.cpp b/tests/chains/EOS/AssetTests.cpp index b697bea654b..05090a56e45 100644 --- a/tests/chains/EOS/AssetTests.cpp +++ b/tests/chains/EOS/AssetTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/NameTests.cpp b/tests/chains/EOS/NameTests.cpp index e9b64201926..bc7e74e3068 100644 --- a/tests/chains/EOS/NameTests.cpp +++ b/tests/chains/EOS/NameTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/SignatureTests.cpp b/tests/chains/EOS/SignatureTests.cpp index 72f3fb85a2c..8ebeb3b815a 100644 --- a/tests/chains/EOS/SignatureTests.cpp +++ b/tests/chains/EOS/SignatureTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/TWAnySignerTests.cpp b/tests/chains/EOS/TWAnySignerTests.cpp index e075c7ad8d8..f69ebc4ec80 100644 --- a/tests/chains/EOS/TWAnySignerTests.cpp +++ b/tests/chains/EOS/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/TWCoinTypeTests.cpp b/tests/chains/EOS/TWCoinTypeTests.cpp index 18edd68aa46..d1e857993de 100644 --- a/tests/chains/EOS/TWCoinTypeTests.cpp +++ b/tests/chains/EOS/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/EOS/TransactionTests.cpp b/tests/chains/EOS/TransactionTests.cpp index 65bfa0fb392..98e8c133b21 100644 --- a/tests/chains/EOS/TransactionTests.cpp +++ b/tests/chains/EOS/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/AbiStructTests.cpp b/tests/chains/Ethereum/AbiStructTests.cpp index 259fb4ef3f6..923e853fd1b 100644 --- a/tests/chains/Ethereum/AbiStructTests.cpp +++ b/tests/chains/Ethereum/AbiStructTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/AbiTests.cpp b/tests/chains/Ethereum/AbiTests.cpp index e23289a6446..c1eceb2acf3 100644 --- a/tests/chains/Ethereum/AbiTests.cpp +++ b/tests/chains/Ethereum/AbiTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/AddressTests.cpp b/tests/chains/Ethereum/AddressTests.cpp index 2c4ca5745e7..2020ea8c801 100644 --- a/tests/chains/Ethereum/AddressTests.cpp +++ b/tests/chains/Ethereum/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/ContractCallTests.cpp b/tests/chains/Ethereum/ContractCallTests.cpp index bf21bcd21cb..ca3108d4a05 100644 --- a/tests/chains/Ethereum/ContractCallTests.cpp +++ b/tests/chains/Ethereum/ContractCallTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/EthereumMessageSignerTests.cpp b/tests/chains/Ethereum/EthereumMessageSignerTests.cpp index 2c818921e86..93bf1269299 100644 --- a/tests/chains/Ethereum/EthereumMessageSignerTests.cpp +++ b/tests/chains/Ethereum/EthereumMessageSignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/RLPTests.cpp b/tests/chains/Ethereum/RLPTests.cpp index 52b01b75de4..1fa1a8dac9e 100644 --- a/tests/chains/Ethereum/RLPTests.cpp +++ b/tests/chains/Ethereum/RLPTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/SignerTests.cpp b/tests/chains/Ethereum/SignerTests.cpp index 14de9e19dc9..33973a748ed 100644 --- a/tests/chains/Ethereum/SignerTests.cpp +++ b/tests/chains/Ethereum/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/TWAnySignerTests.cpp b/tests/chains/Ethereum/TWAnySignerTests.cpp index 40c50427be3..bab337b3a78 100644 --- a/tests/chains/Ethereum/TWAnySignerTests.cpp +++ b/tests/chains/Ethereum/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/TWCoinTypeTests.cpp b/tests/chains/Ethereum/TWCoinTypeTests.cpp index 39878ade96c..4ca7b327030 100644 --- a/tests/chains/Ethereum/TWCoinTypeTests.cpp +++ b/tests/chains/Ethereum/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/TWEthereumAbiTests.cpp b/tests/chains/Ethereum/TWEthereumAbiTests.cpp index 9cb63bd7569..655b9e2c610 100644 --- a/tests/chains/Ethereum/TWEthereumAbiTests.cpp +++ b/tests/chains/Ethereum/TWEthereumAbiTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/TWEthereumAbiValueDecoderTests.cpp b/tests/chains/Ethereum/TWEthereumAbiValueDecoderTests.cpp index da8dcc4b728..0ef20806179 100644 --- a/tests/chains/Ethereum/TWEthereumAbiValueDecoderTests.cpp +++ b/tests/chains/Ethereum/TWEthereumAbiValueDecoderTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/TWEthereumAbiValueEncodeTests.cpp b/tests/chains/Ethereum/TWEthereumAbiValueEncodeTests.cpp index 7235666c804..bedfd79585d 100644 --- a/tests/chains/Ethereum/TWEthereumAbiValueEncodeTests.cpp +++ b/tests/chains/Ethereum/TWEthereumAbiValueEncodeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/ValueDecoderTests.cpp b/tests/chains/Ethereum/ValueDecoderTests.cpp index c576971e9d4..d2cdc0e8b24 100644 --- a/tests/chains/Ethereum/ValueDecoderTests.cpp +++ b/tests/chains/Ethereum/ValueDecoderTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ethereum/ValueEncoderTests.cpp b/tests/chains/Ethereum/ValueEncoderTests.cpp index 29a621d2a05..83b3dc913c9 100644 --- a/tests/chains/Ethereum/ValueEncoderTests.cpp +++ b/tests/chains/Ethereum/ValueEncoderTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/EthereumClassic/TWCoinTypeTests.cpp b/tests/chains/EthereumClassic/TWCoinTypeTests.cpp index 6ac2854fa36..2181cda4701 100644 --- a/tests/chains/EthereumClassic/TWCoinTypeTests.cpp +++ b/tests/chains/EthereumClassic/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/AddressTests.cpp b/tests/chains/Everscale/AddressTests.cpp index 5896183c21d..21f8e41b49d 100644 --- a/tests/chains/Everscale/AddressTests.cpp +++ b/tests/chains/Everscale/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/CellBuilderTest.cpp b/tests/chains/Everscale/CellBuilderTest.cpp index 9bc0d05bb2f..a2393bbbdad 100644 --- a/tests/chains/Everscale/CellBuilderTest.cpp +++ b/tests/chains/Everscale/CellBuilderTest.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/CellTests.cpp b/tests/chains/Everscale/CellTests.cpp index 28bd22b81d2..efd7bf22480 100644 --- a/tests/chains/Everscale/CellTests.cpp +++ b/tests/chains/Everscale/CellTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/SignerTests.cpp b/tests/chains/Everscale/SignerTests.cpp index 80eb521a52d..73e3ba86922 100644 --- a/tests/chains/Everscale/SignerTests.cpp +++ b/tests/chains/Everscale/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/TWAnyAddressTests.cpp b/tests/chains/Everscale/TWAnyAddressTests.cpp index 6cf7627b0f6..87ea9c497b3 100644 --- a/tests/chains/Everscale/TWAnyAddressTests.cpp +++ b/tests/chains/Everscale/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/TWAnySignerTests.cpp b/tests/chains/Everscale/TWAnySignerTests.cpp index d404ce00210..f185ceb86b9 100644 --- a/tests/chains/Everscale/TWAnySignerTests.cpp +++ b/tests/chains/Everscale/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Everscale/TWCoinTypeTests.cpp b/tests/chains/Everscale/TWCoinTypeTests.cpp index 95a9297cef2..27650c73e7a 100644 --- a/tests/chains/Everscale/TWCoinTypeTests.cpp +++ b/tests/chains/Everscale/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Evmos/SignerTests.cpp b/tests/chains/Evmos/SignerTests.cpp index 0dc9d3e816c..e6af497797b 100644 --- a/tests/chains/Evmos/SignerTests.cpp +++ b/tests/chains/Evmos/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Evmos/TWAnyAddressTests.cpp b/tests/chains/Evmos/TWAnyAddressTests.cpp index 63b9462654a..697b9400dd4 100644 --- a/tests/chains/Evmos/TWAnyAddressTests.cpp +++ b/tests/chains/Evmos/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Evmos/TWCoinTypeTests.cpp b/tests/chains/Evmos/TWCoinTypeTests.cpp index 346d9c98117..73f12b7b68e 100644 --- a/tests/chains/Evmos/TWCoinTypeTests.cpp +++ b/tests/chains/Evmos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/AddressTests.cpp b/tests/chains/FIO/AddressTests.cpp index aea76097f2e..673d4dc130f 100644 --- a/tests/chains/FIO/AddressTests.cpp +++ b/tests/chains/FIO/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/EncryptionTests.cpp b/tests/chains/FIO/EncryptionTests.cpp index ac0c2ff9321..4065a54199e 100644 --- a/tests/chains/FIO/EncryptionTests.cpp +++ b/tests/chains/FIO/EncryptionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/SignerTests.cpp b/tests/chains/FIO/SignerTests.cpp index a55e851f18f..a2e917b47c3 100644 --- a/tests/chains/FIO/SignerTests.cpp +++ b/tests/chains/FIO/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/TWCoinTypeTests.cpp b/tests/chains/FIO/TWCoinTypeTests.cpp index 2dec77e3723..4279a35fc85 100644 --- a/tests/chains/FIO/TWCoinTypeTests.cpp +++ b/tests/chains/FIO/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/TWFIOAccountTests.cpp b/tests/chains/FIO/TWFIOAccountTests.cpp index e9b0f948a09..fc9b0e8a900 100644 --- a/tests/chains/FIO/TWFIOAccountTests.cpp +++ b/tests/chains/FIO/TWFIOAccountTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/TWFIOTests.cpp b/tests/chains/FIO/TWFIOTests.cpp index 9777e10f5c5..f3d0290515a 100644 --- a/tests/chains/FIO/TWFIOTests.cpp +++ b/tests/chains/FIO/TWFIOTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/FIO/TransactionBuilderTests.cpp b/tests/chains/FIO/TransactionBuilderTests.cpp index ff7b73d9484..4c5f47f99db 100644 --- a/tests/chains/FIO/TransactionBuilderTests.cpp +++ b/tests/chains/FIO/TransactionBuilderTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Fantom/TWCoinTypeTests.cpp b/tests/chains/Fantom/TWCoinTypeTests.cpp index 15dcde31182..9b497c7ad4b 100644 --- a/tests/chains/Fantom/TWCoinTypeTests.cpp +++ b/tests/chains/Fantom/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Filecoin/AddressTests.cpp b/tests/chains/Filecoin/AddressTests.cpp index be2bd2355b9..a383c3145b0 100644 --- a/tests/chains/Filecoin/AddressTests.cpp +++ b/tests/chains/Filecoin/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/tests/chains/Filecoin/SignerTests.cpp b/tests/chains/Filecoin/SignerTests.cpp index 2e52a650ee0..c5dae1d71f6 100644 --- a/tests/chains/Filecoin/SignerTests.cpp +++ b/tests/chains/Filecoin/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2019 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/tests/chains/Filecoin/TWAnySignerTests.cpp b/tests/chains/Filecoin/TWAnySignerTests.cpp index a4af47a4332..aae72721f73 100644 --- a/tests/chains/Filecoin/TWAnySignerTests.cpp +++ b/tests/chains/Filecoin/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Filecoin/TWCoinTypeTests.cpp b/tests/chains/Filecoin/TWCoinTypeTests.cpp index 16d5499b5b1..ff727a75add 100644 --- a/tests/chains/Filecoin/TWCoinTypeTests.cpp +++ b/tests/chains/Filecoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Filecoin/TransactionTests.cpp b/tests/chains/Filecoin/TransactionTests.cpp index 6e35a17e0a0..1ebb3bc8106 100644 --- a/tests/chains/Filecoin/TransactionTests.cpp +++ b/tests/chains/Filecoin/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust. +// Copyright © 2017-2023 Trust. // // This file is part of Trust. The full Trust copyright notice, including // terms governing use, modification, and redistribution, is contained in the diff --git a/tests/chains/Firo/TWCoinTypeTests.cpp b/tests/chains/Firo/TWCoinTypeTests.cpp index 2f22a9c23ac..4e5a5752172 100644 --- a/tests/chains/Firo/TWCoinTypeTests.cpp +++ b/tests/chains/Firo/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Firo/TWZCoinAddressTests.cpp b/tests/chains/Firo/TWZCoinAddressTests.cpp index 33ccf2516e8..415528c742b 100644 --- a/tests/chains/Firo/TWZCoinAddressTests.cpp +++ b/tests/chains/Firo/TWZCoinAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/GoChain/TWCoinTypeTests.cpp b/tests/chains/GoChain/TWCoinTypeTests.cpp index 70e8170b723..c2e469658c5 100644 --- a/tests/chains/GoChain/TWCoinTypeTests.cpp +++ b/tests/chains/GoChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Groestlcoin/AddressTests.cpp b/tests/chains/Groestlcoin/AddressTests.cpp index a07719aaa0c..9799147412c 100644 --- a/tests/chains/Groestlcoin/AddressTests.cpp +++ b/tests/chains/Groestlcoin/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Groestlcoin/TWCoinTypeTests.cpp b/tests/chains/Groestlcoin/TWCoinTypeTests.cpp index 2cb15c927b2..d772b967c38 100644 --- a/tests/chains/Groestlcoin/TWCoinTypeTests.cpp +++ b/tests/chains/Groestlcoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Groestlcoin/TWGroestlcoinSigningTests.cpp b/tests/chains/Groestlcoin/TWGroestlcoinSigningTests.cpp index 6593cb41c1d..5bba40d5ffc 100644 --- a/tests/chains/Groestlcoin/TWGroestlcoinSigningTests.cpp +++ b/tests/chains/Groestlcoin/TWGroestlcoinSigningTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Groestlcoin/TWGroestlcoinTests.cpp b/tests/chains/Groestlcoin/TWGroestlcoinTests.cpp index e685bc59646..852d6456a5e 100644 --- a/tests/chains/Groestlcoin/TWGroestlcoinTests.cpp +++ b/tests/chains/Groestlcoin/TWGroestlcoinTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/AddressTests.cpp b/tests/chains/Harmony/AddressTests.cpp index eac8744c266..157270ae555 100644 --- a/tests/chains/Harmony/AddressTests.cpp +++ b/tests/chains/Harmony/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/SignerTests.cpp b/tests/chains/Harmony/SignerTests.cpp index 9cfe4104306..3b0485e2dba 100644 --- a/tests/chains/Harmony/SignerTests.cpp +++ b/tests/chains/Harmony/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/StakingTests.cpp b/tests/chains/Harmony/StakingTests.cpp index 4f96ec0fa87..9f31e73339f 100644 --- a/tests/chains/Harmony/StakingTests.cpp +++ b/tests/chains/Harmony/StakingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/TWAnyAddressTests.cpp b/tests/chains/Harmony/TWAnyAddressTests.cpp index a289284b229..5aec01a7e94 100644 --- a/tests/chains/Harmony/TWAnyAddressTests.cpp +++ b/tests/chains/Harmony/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/TWAnySignerTests.cpp b/tests/chains/Harmony/TWAnySignerTests.cpp index 3edae0c8247..6613c7115ab 100644 --- a/tests/chains/Harmony/TWAnySignerTests.cpp +++ b/tests/chains/Harmony/TWAnySignerTests.cpp @@ -1,5 +1,5 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/TWCoinTypeTests.cpp b/tests/chains/Harmony/TWCoinTypeTests.cpp index 1147cfeb362..eeeb509a962 100644 --- a/tests/chains/Harmony/TWCoinTypeTests.cpp +++ b/tests/chains/Harmony/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Harmony/TWHarmonyStakingTests.cpp b/tests/chains/Harmony/TWHarmonyStakingTests.cpp index 164d37edacb..be9d1a07fea 100644 --- a/tests/chains/Harmony/TWHarmonyStakingTests.cpp +++ b/tests/chains/Harmony/TWHarmonyStakingTests.cpp @@ -1,5 +1,5 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Hedera/AddressTests.cpp b/tests/chains/Hedera/AddressTests.cpp index 9a740750d41..672b0a7b106 100644 --- a/tests/chains/Hedera/AddressTests.cpp +++ b/tests/chains/Hedera/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Hedera/SignerTests.cpp b/tests/chains/Hedera/SignerTests.cpp index f39c6d10915..2a61f3023ab 100644 --- a/tests/chains/Hedera/SignerTests.cpp +++ b/tests/chains/Hedera/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Hedera/TWAnySignerTests.cpp b/tests/chains/Hedera/TWAnySignerTests.cpp index a4958691315..8c62ac85af8 100644 --- a/tests/chains/Hedera/TWAnySignerTests.cpp +++ b/tests/chains/Hedera/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Hedera/TWCoinTypeTests.cpp b/tests/chains/Hedera/TWCoinTypeTests.cpp index ccaf1145074..09d0ce4c875 100644 --- a/tests/chains/Hedera/TWCoinTypeTests.cpp +++ b/tests/chains/Hedera/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/ICON/AddressTests.cpp b/tests/chains/ICON/AddressTests.cpp index a9ed8262e39..c21ff7e2821 100644 --- a/tests/chains/ICON/AddressTests.cpp +++ b/tests/chains/ICON/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/ICON/TWAnySignerTests.cpp b/tests/chains/ICON/TWAnySignerTests.cpp index 74a57537568..ee3ca846499 100644 --- a/tests/chains/ICON/TWAnySignerTests.cpp +++ b/tests/chains/ICON/TWAnySignerTests.cpp @@ -1,5 +1,5 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/ICON/TWCoinTypeTests.cpp b/tests/chains/ICON/TWCoinTypeTests.cpp index 5fc84a70033..0fb5661bf5b 100644 --- a/tests/chains/ICON/TWCoinTypeTests.cpp +++ b/tests/chains/ICON/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/ImmutableX/StarkKeyTests.cpp b/tests/chains/ImmutableX/StarkKeyTests.cpp index 677c3ef5d34..72cc24fe1ef 100644 --- a/tests/chains/ImmutableX/StarkKeyTests.cpp +++ b/tests/chains/ImmutableX/StarkKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/IoTeX/AddressTests.cpp b/tests/chains/IoTeX/AddressTests.cpp index 36fd80b38d9..ca97adb50a4 100644 --- a/tests/chains/IoTeX/AddressTests.cpp +++ b/tests/chains/IoTeX/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/IoTeX/SignerTests.cpp b/tests/chains/IoTeX/SignerTests.cpp index c0c78a5ea99..7c5eded4590 100644 --- a/tests/chains/IoTeX/SignerTests.cpp +++ b/tests/chains/IoTeX/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/IoTeX/StakingTests.cpp b/tests/chains/IoTeX/StakingTests.cpp index e5f37330dee..3a0a2bcc7bd 100644 --- a/tests/chains/IoTeX/StakingTests.cpp +++ b/tests/chains/IoTeX/StakingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/IoTeX/TWAnySignerTests.cpp b/tests/chains/IoTeX/TWAnySignerTests.cpp index 4fbeafd20ac..814e352ce66 100644 --- a/tests/chains/IoTeX/TWAnySignerTests.cpp +++ b/tests/chains/IoTeX/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/IoTeX/TWCoinTypeTests.cpp b/tests/chains/IoTeX/TWCoinTypeTests.cpp index 4cdc2d68ad4..2ddfb56ee69 100644 --- a/tests/chains/IoTeX/TWCoinTypeTests.cpp +++ b/tests/chains/IoTeX/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Juno/TWAnyAddressTests.cpp b/tests/chains/Juno/TWAnyAddressTests.cpp index 491bcd20a78..f6e0ee70c3b 100644 --- a/tests/chains/Juno/TWAnyAddressTests.cpp +++ b/tests/chains/Juno/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Juno/TWAnySignerTests.cpp b/tests/chains/Juno/TWAnySignerTests.cpp index f40103c1027..138fc8ad36f 100644 --- a/tests/chains/Juno/TWAnySignerTests.cpp +++ b/tests/chains/Juno/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Kava/TWCoinTypeTests.cpp b/tests/chains/Kava/TWCoinTypeTests.cpp index fd4a19b7412..c9539ea88c1 100644 --- a/tests/chains/Kava/TWCoinTypeTests.cpp +++ b/tests/chains/Kava/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/KavaEvm/TWCoinTypeTests.cpp b/tests/chains/KavaEvm/TWCoinTypeTests.cpp index a658eba031a..3c2af143611 100644 --- a/tests/chains/KavaEvm/TWCoinTypeTests.cpp +++ b/tests/chains/KavaEvm/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Kin/TWCoinTypeTests.cpp b/tests/chains/Kin/TWCoinTypeTests.cpp index 8f37b7f3607..2e52babb04a 100644 --- a/tests/chains/Kin/TWCoinTypeTests.cpp +++ b/tests/chains/Kin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Klaytn/TWCoinTypeTests.cpp b/tests/chains/Klaytn/TWCoinTypeTests.cpp index d7eb5c71136..3ecccb32471 100644 --- a/tests/chains/Klaytn/TWCoinTypeTests.cpp +++ b/tests/chains/Klaytn/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/KuCoinCommunityChain/TWCoinTypeTests.cpp b/tests/chains/KuCoinCommunityChain/TWCoinTypeTests.cpp index 354bc8b7ba1..71dbe3758ef 100644 --- a/tests/chains/KuCoinCommunityChain/TWCoinTypeTests.cpp +++ b/tests/chains/KuCoinCommunityChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Kusama/AddressTests.cpp b/tests/chains/Kusama/AddressTests.cpp index 10f6178d1df..eed8c10c2f5 100644 --- a/tests/chains/Kusama/AddressTests.cpp +++ b/tests/chains/Kusama/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Kusama/SignerTests.cpp b/tests/chains/Kusama/SignerTests.cpp index eac82e1a890..507492896db 100644 --- a/tests/chains/Kusama/SignerTests.cpp +++ b/tests/chains/Kusama/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Kusama/TWAnySignerTests.cpp b/tests/chains/Kusama/TWAnySignerTests.cpp index 60905a5633b..82ecfd4cc82 100644 --- a/tests/chains/Kusama/TWAnySignerTests.cpp +++ b/tests/chains/Kusama/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Kusama/TWCoinTypeTests.cpp b/tests/chains/Kusama/TWCoinTypeTests.cpp index 09cd2bf8c0f..d43a8d6d2a3 100644 --- a/tests/chains/Kusama/TWCoinTypeTests.cpp +++ b/tests/chains/Kusama/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Litecoin/LitecoinAddressTests.cpp b/tests/chains/Litecoin/LitecoinAddressTests.cpp index 6858723ce13..89ad34ebcdd 100644 --- a/tests/chains/Litecoin/LitecoinAddressTests.cpp +++ b/tests/chains/Litecoin/LitecoinAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Litecoin/TWCoinTypeTests.cpp b/tests/chains/Litecoin/TWCoinTypeTests.cpp index 441d729e66d..d16b1f56c90 100644 --- a/tests/chains/Litecoin/TWCoinTypeTests.cpp +++ b/tests/chains/Litecoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Litecoin/TWLitecoinTests.cpp b/tests/chains/Litecoin/TWLitecoinTests.cpp index 0008fd375d1..423fd665b41 100644 --- a/tests/chains/Litecoin/TWLitecoinTests.cpp +++ b/tests/chains/Litecoin/TWLitecoinTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Meter/TWCoinTypeTests.cpp b/tests/chains/Meter/TWCoinTypeTests.cpp index b9c4df9d838..da05941fe5c 100644 --- a/tests/chains/Meter/TWCoinTypeTests.cpp +++ b/tests/chains/Meter/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Metis/TWCoinTypeTests.cpp b/tests/chains/Metis/TWCoinTypeTests.cpp index 60733b44741..94a0cc8a950 100644 --- a/tests/chains/Metis/TWCoinTypeTests.cpp +++ b/tests/chains/Metis/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Monacoin/TWCoinTypeTests.cpp b/tests/chains/Monacoin/TWCoinTypeTests.cpp index 82fc75a0c68..a9196f410ee 100644 --- a/tests/chains/Monacoin/TWCoinTypeTests.cpp +++ b/tests/chains/Monacoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Monacoin/TWMonacoinAddressTests.cpp b/tests/chains/Monacoin/TWMonacoinAddressTests.cpp index d46964f25f5..7cfbfe9f629 100644 --- a/tests/chains/Monacoin/TWMonacoinAddressTests.cpp +++ b/tests/chains/Monacoin/TWMonacoinAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Monacoin/TWMonacoinTransactionTests.cpp b/tests/chains/Monacoin/TWMonacoinTransactionTests.cpp index 94f26493815..66cc43ad2bd 100644 --- a/tests/chains/Monacoin/TWMonacoinTransactionTests.cpp +++ b/tests/chains/Monacoin/TWMonacoinTransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Moonbeam/TWCoinTypeTests.cpp b/tests/chains/Moonbeam/TWCoinTypeTests.cpp index 0c59369a597..75de7b42232 100644 --- a/tests/chains/Moonbeam/TWCoinTypeTests.cpp +++ b/tests/chains/Moonbeam/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Moonriver/TWCoinTypeTests.cpp b/tests/chains/Moonriver/TWCoinTypeTests.cpp index b19f8a84b7b..dcec5f291d7 100644 --- a/tests/chains/Moonriver/TWCoinTypeTests.cpp +++ b/tests/chains/Moonriver/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/AddressTests.cpp b/tests/chains/MultiversX/AddressTests.cpp index 01d820489d1..0fe0d626c6e 100644 --- a/tests/chains/MultiversX/AddressTests.cpp +++ b/tests/chains/MultiversX/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/SerializationTests.cpp b/tests/chains/MultiversX/SerializationTests.cpp index e1fe9e875e4..5b25087e6a1 100644 --- a/tests/chains/MultiversX/SerializationTests.cpp +++ b/tests/chains/MultiversX/SerializationTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/SignerTests.cpp b/tests/chains/MultiversX/SignerTests.cpp index a9da1cd485a..7f6a3b3bdc4 100644 --- a/tests/chains/MultiversX/SignerTests.cpp +++ b/tests/chains/MultiversX/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/TWAnySignerTests.cpp b/tests/chains/MultiversX/TWAnySignerTests.cpp index 91a6315b550..e9594559679 100644 --- a/tests/chains/MultiversX/TWAnySignerTests.cpp +++ b/tests/chains/MultiversX/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/TWCoinTypeTests.cpp b/tests/chains/MultiversX/TWCoinTypeTests.cpp index 2a08eeb0574..8dad4779c47 100644 --- a/tests/chains/MultiversX/TWCoinTypeTests.cpp +++ b/tests/chains/MultiversX/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/TestAccounts.h b/tests/chains/MultiversX/TestAccounts.h index 07bfa1aaa95..e1b44c3eb76 100644 --- a/tests/chains/MultiversX/TestAccounts.h +++ b/tests/chains/MultiversX/TestAccounts.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/MultiversX/TransactionFactoryTests.cpp b/tests/chains/MultiversX/TransactionFactoryTests.cpp index cb8418f5624..7dde2de658c 100644 --- a/tests/chains/MultiversX/TransactionFactoryTests.cpp +++ b/tests/chains/MultiversX/TransactionFactoryTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/AccountTests.cpp b/tests/chains/NEAR/AccountTests.cpp index f1294306588..476b43830d5 100644 --- a/tests/chains/NEAR/AccountTests.cpp +++ b/tests/chains/NEAR/AccountTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/AddressTests.cpp b/tests/chains/NEAR/AddressTests.cpp index a8acd44cf68..185b788a69a 100644 --- a/tests/chains/NEAR/AddressTests.cpp +++ b/tests/chains/NEAR/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/SerializationTests.cpp b/tests/chains/NEAR/SerializationTests.cpp index 98fd6db327b..d598656f126 100644 --- a/tests/chains/NEAR/SerializationTests.cpp +++ b/tests/chains/NEAR/SerializationTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/SignerTests.cpp b/tests/chains/NEAR/SignerTests.cpp index 84961c45ea8..ba02c5a17ec 100644 --- a/tests/chains/NEAR/SignerTests.cpp +++ b/tests/chains/NEAR/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/TWAnySignerTests.cpp b/tests/chains/NEAR/TWAnySignerTests.cpp index b9fa56f75cb..94b0af6b112 100644 --- a/tests/chains/NEAR/TWAnySignerTests.cpp +++ b/tests/chains/NEAR/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/TWCoinTypeTests.cpp b/tests/chains/NEAR/TWCoinTypeTests.cpp index c5a04325d1f..b6e310a641e 100644 --- a/tests/chains/NEAR/TWCoinTypeTests.cpp +++ b/tests/chains/NEAR/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEAR/TWNEARAccountTests.cpp b/tests/chains/NEAR/TWNEARAccountTests.cpp index 0be2cf6dbc7..39735df5b38 100644 --- a/tests/chains/NEAR/TWNEARAccountTests.cpp +++ b/tests/chains/NEAR/TWNEARAccountTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/AddressTests.cpp b/tests/chains/NEO/AddressTests.cpp index c17f9b8a5c9..bef89352c17 100644 --- a/tests/chains/NEO/AddressTests.cpp +++ b/tests/chains/NEO/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/CoinReferenceTests.cpp b/tests/chains/NEO/CoinReferenceTests.cpp index 1101986a96f..8e6880ab09f 100644 --- a/tests/chains/NEO/CoinReferenceTests.cpp +++ b/tests/chains/NEO/CoinReferenceTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/SignerTests.cpp b/tests/chains/NEO/SignerTests.cpp index fe33508c885..b5b54b97f44 100644 --- a/tests/chains/NEO/SignerTests.cpp +++ b/tests/chains/NEO/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/TWAnySignerTests.cpp b/tests/chains/NEO/TWAnySignerTests.cpp index 9a92c1133c0..3f24c026e40 100644 --- a/tests/chains/NEO/TWAnySignerTests.cpp +++ b/tests/chains/NEO/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/TWCoinTypeTests.cpp b/tests/chains/NEO/TWCoinTypeTests.cpp index fa87f98119b..da443091d2e 100644 --- a/tests/chains/NEO/TWCoinTypeTests.cpp +++ b/tests/chains/NEO/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/TWNEOAddressTests.cpp b/tests/chains/NEO/TWNEOAddressTests.cpp index cc36db2af5f..733892768ea 100644 --- a/tests/chains/NEO/TWNEOAddressTests.cpp +++ b/tests/chains/NEO/TWNEOAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/TransactionAttributeTests.cpp b/tests/chains/NEO/TransactionAttributeTests.cpp index 73b64b14554..0ed457fc9f8 100644 --- a/tests/chains/NEO/TransactionAttributeTests.cpp +++ b/tests/chains/NEO/TransactionAttributeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/TransactionOutputTests.cpp b/tests/chains/NEO/TransactionOutputTests.cpp index 84753ba029a..b0211011d1d 100644 --- a/tests/chains/NEO/TransactionOutputTests.cpp +++ b/tests/chains/NEO/TransactionOutputTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/TransactionTests.cpp b/tests/chains/NEO/TransactionTests.cpp index fc973084e90..c4f7386c1bc 100644 --- a/tests/chains/NEO/TransactionTests.cpp +++ b/tests/chains/NEO/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NEO/WitnessTests.cpp b/tests/chains/NEO/WitnessTests.cpp index 7bd68fda171..3b285ba22df 100644 --- a/tests/chains/NEO/WitnessTests.cpp +++ b/tests/chains/NEO/WitnessTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NULS/AddressTests.cpp b/tests/chains/NULS/AddressTests.cpp index 0082fac96fc..f23677b98f1 100644 --- a/tests/chains/NULS/AddressTests.cpp +++ b/tests/chains/NULS/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NULS/TWAnySignerTests.cpp b/tests/chains/NULS/TWAnySignerTests.cpp index 749de87342b..1081579b66b 100644 --- a/tests/chains/NULS/TWAnySignerTests.cpp +++ b/tests/chains/NULS/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NULS/TWCoinTypeTests.cpp b/tests/chains/NULS/TWCoinTypeTests.cpp index 5618222dcb2..68a18eae7d8 100644 --- a/tests/chains/NULS/TWCoinTypeTests.cpp +++ b/tests/chains/NULS/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nano/AddressTests.cpp b/tests/chains/Nano/AddressTests.cpp index 2c3435a11ee..68cf56f8eac 100644 --- a/tests/chains/Nano/AddressTests.cpp +++ b/tests/chains/Nano/AddressTests.cpp @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nano/SignerTests.cpp b/tests/chains/Nano/SignerTests.cpp index 966198c3bc0..c74247d6954 100644 --- a/tests/chains/Nano/SignerTests.cpp +++ b/tests/chains/Nano/SignerTests.cpp @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nano/TWAnySignerTests.cpp b/tests/chains/Nano/TWAnySignerTests.cpp index aa76abc83f5..20b2da029ea 100644 --- a/tests/chains/Nano/TWAnySignerTests.cpp +++ b/tests/chains/Nano/TWAnySignerTests.cpp @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nano/TWCoinTypeTests.cpp b/tests/chains/Nano/TWCoinTypeTests.cpp index c6458843538..87a8ee6ef1e 100644 --- a/tests/chains/Nano/TWCoinTypeTests.cpp +++ b/tests/chains/Nano/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nano/TWNanoAddressTests.cpp b/tests/chains/Nano/TWNanoAddressTests.cpp index 44d653119aa..99493679867 100644 --- a/tests/chains/Nano/TWNanoAddressTests.cpp +++ b/tests/chains/Nano/TWNanoAddressTests.cpp @@ -1,5 +1,5 @@ // Copyright © 2019 Mart Roosmaa. -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/NativeEvmos/TWAnyAddressTests.cpp b/tests/chains/NativeEvmos/TWAnyAddressTests.cpp index cb76b9cc310..ceb6da6ce0f 100644 --- a/tests/chains/NativeEvmos/TWAnyAddressTests.cpp +++ b/tests/chains/NativeEvmos/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NativeEvmos/TWCoinTypeTests.cpp b/tests/chains/NativeEvmos/TWCoinTypeTests.cpp index 6df42eaa394..822897296e8 100644 --- a/tests/chains/NativeEvmos/TWCoinTypeTests.cpp +++ b/tests/chains/NativeEvmos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NativeInjective/SignerTests.cpp b/tests/chains/NativeInjective/SignerTests.cpp index 68b8789a1d2..15fc8538feb 100644 --- a/tests/chains/NativeInjective/SignerTests.cpp +++ b/tests/chains/NativeInjective/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NativeInjective/TWAnyAddressTests.cpp b/tests/chains/NativeInjective/TWAnyAddressTests.cpp index d2f2395ccd5..b3a88aa17ea 100644 --- a/tests/chains/NativeInjective/TWAnyAddressTests.cpp +++ b/tests/chains/NativeInjective/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/NativeInjective/TWCoinTypeTests.cpp b/tests/chains/NativeInjective/TWCoinTypeTests.cpp index 15405de06e9..0b152ca68be 100644 --- a/tests/chains/NativeInjective/TWCoinTypeTests.cpp +++ b/tests/chains/NativeInjective/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Nebulas/AddressTests.cpp b/tests/chains/Nebulas/AddressTests.cpp index 3ab85ba59a6..504134a330c 100644 --- a/tests/chains/Nebulas/AddressTests.cpp +++ b/tests/chains/Nebulas/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Nebulas/SignerTests.cpp b/tests/chains/Nebulas/SignerTests.cpp index f0f130f6860..a9b3001b7e3 100644 --- a/tests/chains/Nebulas/SignerTests.cpp +++ b/tests/chains/Nebulas/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nebulas/TWAnySignerTests.cpp b/tests/chains/Nebulas/TWAnySignerTests.cpp index c850acf6935..2ca8e053d19 100644 --- a/tests/chains/Nebulas/TWAnySignerTests.cpp +++ b/tests/chains/Nebulas/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Nebulas/TWCoinTypeTests.cpp b/tests/chains/Nebulas/TWCoinTypeTests.cpp index d0f30bcc619..9c63f7aee70 100644 --- a/tests/chains/Nebulas/TWCoinTypeTests.cpp +++ b/tests/chains/Nebulas/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nebulas/TWNebulasAddressTests.cpp b/tests/chains/Nebulas/TWNebulasAddressTests.cpp index 50a2cdcea9b..62dffd04c12 100644 --- a/tests/chains/Nebulas/TWNebulasAddressTests.cpp +++ b/tests/chains/Nebulas/TWNebulasAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nebulas/TransactionTests.cpp b/tests/chains/Nebulas/TransactionTests.cpp index 0651403fd2a..607b9648b8f 100644 --- a/tests/chains/Nebulas/TransactionTests.cpp +++ b/tests/chains/Nebulas/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Nervos/AddressTests.cpp b/tests/chains/Nervos/AddressTests.cpp index 15fb9cadfe0..e0797afb3dd 100644 --- a/tests/chains/Nervos/AddressTests.cpp +++ b/tests/chains/Nervos/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Nervos/SignerTests.cpp b/tests/chains/Nervos/SignerTests.cpp index 1b8bdfefeb6..ec129c6f640 100644 --- a/tests/chains/Nervos/SignerTests.cpp +++ b/tests/chains/Nervos/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Nervos/TWAnyAddressTests.cpp b/tests/chains/Nervos/TWAnyAddressTests.cpp index c514723797c..f2822dcfc50 100644 --- a/tests/chains/Nervos/TWAnyAddressTests.cpp +++ b/tests/chains/Nervos/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Nervos/TWAnySignerTests.cpp b/tests/chains/Nervos/TWAnySignerTests.cpp index c213e802d0a..bf6d55115bf 100644 --- a/tests/chains/Nervos/TWAnySignerTests.cpp +++ b/tests/chains/Nervos/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Nervos/TWCoinTypeTests.cpp b/tests/chains/Nervos/TWCoinTypeTests.cpp index 1150536151a..7b0a5870099 100644 --- a/tests/chains/Nervos/TWCoinTypeTests.cpp +++ b/tests/chains/Nervos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Nervos/TWNervosAddressTests.cpp b/tests/chains/Nervos/TWNervosAddressTests.cpp index cf7a8560e0d..2f537d049bf 100644 --- a/tests/chains/Nervos/TWNervosAddressTests.cpp +++ b/tests/chains/Nervos/TWNervosAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Nimiq/AddressTests.cpp b/tests/chains/Nimiq/AddressTests.cpp index b25fda815cb..61065b7f453 100644 --- a/tests/chains/Nimiq/AddressTests.cpp +++ b/tests/chains/Nimiq/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nimiq/SignerTests.cpp b/tests/chains/Nimiq/SignerTests.cpp index 998b53c3642..b99b3006768 100644 --- a/tests/chains/Nimiq/SignerTests.cpp +++ b/tests/chains/Nimiq/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nimiq/TWAnySignerTests.cpp b/tests/chains/Nimiq/TWAnySignerTests.cpp index b9a9ee32b24..e47bcc057e5 100644 --- a/tests/chains/Nimiq/TWAnySignerTests.cpp +++ b/tests/chains/Nimiq/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nimiq/TWCoinTypeTests.cpp b/tests/chains/Nimiq/TWCoinTypeTests.cpp index f973c71604e..a5411b5d53b 100644 --- a/tests/chains/Nimiq/TWCoinTypeTests.cpp +++ b/tests/chains/Nimiq/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Nimiq/TransactionTests.cpp b/tests/chains/Nimiq/TransactionTests.cpp index 089198f2ec6..55cf3d276d0 100644 --- a/tests/chains/Nimiq/TransactionTests.cpp +++ b/tests/chains/Nimiq/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/OKXChain/TWCoinTypeTests.cpp b/tests/chains/OKXChain/TWCoinTypeTests.cpp index af4eed1e128..4741a154cc5 100644 --- a/tests/chains/OKXChain/TWCoinTypeTests.cpp +++ b/tests/chains/OKXChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Oasis/AddressTests.cpp b/tests/chains/Oasis/AddressTests.cpp index ce1436525f5..2f5a5aae988 100644 --- a/tests/chains/Oasis/AddressTests.cpp +++ b/tests/chains/Oasis/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Oasis/SignerTests.cpp b/tests/chains/Oasis/SignerTests.cpp index b4cc6ee2a6b..38228588bae 100644 --- a/tests/chains/Oasis/SignerTests.cpp +++ b/tests/chains/Oasis/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Oasis/TWAnySignerTests.cpp b/tests/chains/Oasis/TWAnySignerTests.cpp index d390b051db5..81b2e108c86 100644 --- a/tests/chains/Oasis/TWAnySignerTests.cpp +++ b/tests/chains/Oasis/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Oasis/TWCoinTypeTests.cpp b/tests/chains/Oasis/TWCoinTypeTests.cpp index 86ff3764832..19bb42436cf 100644 --- a/tests/chains/Oasis/TWCoinTypeTests.cpp +++ b/tests/chains/Oasis/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/AccountTests.cpp b/tests/chains/Ontology/AccountTests.cpp index 1fdf49f4806..b95586c27ed 100644 --- a/tests/chains/Ontology/AccountTests.cpp +++ b/tests/chains/Ontology/AccountTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/AddressTests.cpp b/tests/chains/Ontology/AddressTests.cpp index f6917282e9b..4e19eb55e20 100644 --- a/tests/chains/Ontology/AddressTests.cpp +++ b/tests/chains/Ontology/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/Oep4Tests.cpp b/tests/chains/Ontology/Oep4Tests.cpp index 3a2513151ef..41984c60e49 100644 --- a/tests/chains/Ontology/Oep4Tests.cpp +++ b/tests/chains/Ontology/Oep4Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/OngTests.cpp b/tests/chains/Ontology/OngTests.cpp index d4b4994ca50..a140e670d00 100644 --- a/tests/chains/Ontology/OngTests.cpp +++ b/tests/chains/Ontology/OngTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/OntTests.cpp b/tests/chains/Ontology/OntTests.cpp index 20e9c3bbeb6..310c6f75319 100644 --- a/tests/chains/Ontology/OntTests.cpp +++ b/tests/chains/Ontology/OntTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/ParamsBuilderTests.cpp b/tests/chains/Ontology/ParamsBuilderTests.cpp index c9a4bc02ae5..74e2944411e 100644 --- a/tests/chains/Ontology/ParamsBuilderTests.cpp +++ b/tests/chains/Ontology/ParamsBuilderTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/TWAnySignerTests.cpp b/tests/chains/Ontology/TWAnySignerTests.cpp index 99f2c8b1559..13938ddff40 100644 --- a/tests/chains/Ontology/TWAnySignerTests.cpp +++ b/tests/chains/Ontology/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/TWCoinTypeTests.cpp b/tests/chains/Ontology/TWCoinTypeTests.cpp index 4bada2c0a47..79171b64b7a 100644 --- a/tests/chains/Ontology/TWCoinTypeTests.cpp +++ b/tests/chains/Ontology/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ontology/TransactionTests.cpp b/tests/chains/Ontology/TransactionTests.cpp index ccf7fc14094..1aaab639fd1 100644 --- a/tests/chains/Ontology/TransactionTests.cpp +++ b/tests/chains/Ontology/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Optimism/TWCoinTypeTests.cpp b/tests/chains/Optimism/TWCoinTypeTests.cpp index c95173bfe5f..7c35b7d5c76 100644 --- a/tests/chains/Optimism/TWCoinTypeTests.cpp +++ b/tests/chains/Optimism/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Osmosis/AddressTests.cpp b/tests/chains/Osmosis/AddressTests.cpp index 68011e0dc75..3f0224aafa1 100644 --- a/tests/chains/Osmosis/AddressTests.cpp +++ b/tests/chains/Osmosis/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Osmosis/SignerTests.cpp b/tests/chains/Osmosis/SignerTests.cpp index 91dd335f25e..ad6e3f255a4 100644 --- a/tests/chains/Osmosis/SignerTests.cpp +++ b/tests/chains/Osmosis/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Osmosis/TWAnyAddressTests.cpp b/tests/chains/Osmosis/TWAnyAddressTests.cpp index 40793a73acf..4474ba4e424 100644 --- a/tests/chains/Osmosis/TWAnyAddressTests.cpp +++ b/tests/chains/Osmosis/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Osmosis/TWAnySignerTests.cpp b/tests/chains/Osmosis/TWAnySignerTests.cpp index 64aa657c25c..74ae63a5000 100644 --- a/tests/chains/Osmosis/TWAnySignerTests.cpp +++ b/tests/chains/Osmosis/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Osmosis/TWCoinTypeTests.cpp b/tests/chains/Osmosis/TWCoinTypeTests.cpp index d42a4106616..1f3fa3e3a50 100644 --- a/tests/chains/Osmosis/TWCoinTypeTests.cpp +++ b/tests/chains/Osmosis/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/POANetwork/TWCoinTypeTests.cpp b/tests/chains/POANetwork/TWCoinTypeTests.cpp index 76581a52843..19537398c1e 100644 --- a/tests/chains/POANetwork/TWCoinTypeTests.cpp +++ b/tests/chains/POANetwork/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Polkadot/AddressTests.cpp b/tests/chains/Polkadot/AddressTests.cpp index d2b4b74a230..774497a874e 100644 --- a/tests/chains/Polkadot/AddressTests.cpp +++ b/tests/chains/Polkadot/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Polkadot/SS58AddressTests.cpp b/tests/chains/Polkadot/SS58AddressTests.cpp index 701938d697b..b7a7aba3fb2 100644 --- a/tests/chains/Polkadot/SS58AddressTests.cpp +++ b/tests/chains/Polkadot/SS58AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Polkadot/ScaleCodecTests.cpp b/tests/chains/Polkadot/ScaleCodecTests.cpp index c31892fddea..95d11a60303 100644 --- a/tests/chains/Polkadot/ScaleCodecTests.cpp +++ b/tests/chains/Polkadot/ScaleCodecTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Polkadot/SignerTests.cpp b/tests/chains/Polkadot/SignerTests.cpp index c3ee02fe27b..d93db4a644e 100644 --- a/tests/chains/Polkadot/SignerTests.cpp +++ b/tests/chains/Polkadot/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Polkadot/TWCoinTypeTests.cpp b/tests/chains/Polkadot/TWCoinTypeTests.cpp index b35b069a115..ecb4d0e8c65 100644 --- a/tests/chains/Polkadot/TWCoinTypeTests.cpp +++ b/tests/chains/Polkadot/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Polygon/TWCoinTypeTests.cpp b/tests/chains/Polygon/TWCoinTypeTests.cpp index 3ffc1203d40..282276d2763 100644 --- a/tests/chains/Polygon/TWCoinTypeTests.cpp +++ b/tests/chains/Polygon/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Qtum/TWCoinTypeTests.cpp b/tests/chains/Qtum/TWCoinTypeTests.cpp index 97814e04ab3..8b7cd06e89d 100644 --- a/tests/chains/Qtum/TWCoinTypeTests.cpp +++ b/tests/chains/Qtum/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Qtum/TWQtumAddressTests.cpp b/tests/chains/Qtum/TWQtumAddressTests.cpp index 7da7788ce7e..9bbccf926f2 100644 --- a/tests/chains/Qtum/TWQtumAddressTests.cpp +++ b/tests/chains/Qtum/TWQtumAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ravencoin/TWCoinTypeTests.cpp b/tests/chains/Ravencoin/TWCoinTypeTests.cpp index 9f90f507883..1a78402e7c9 100644 --- a/tests/chains/Ravencoin/TWCoinTypeTests.cpp +++ b/tests/chains/Ravencoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Ravencoin/TWRavencoinTransactionTests.cpp b/tests/chains/Ravencoin/TWRavencoinTransactionTests.cpp index d3927772a2c..44b354d0b1e 100644 --- a/tests/chains/Ravencoin/TWRavencoinTransactionTests.cpp +++ b/tests/chains/Ravencoin/TWRavencoinTransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ronin/TWAnyAddressTests.cpp b/tests/chains/Ronin/TWAnyAddressTests.cpp index 8bdcd75d68f..f8556a443af 100644 --- a/tests/chains/Ronin/TWAnyAddressTests.cpp +++ b/tests/chains/Ronin/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ronin/TWAnySignerTests.cpp b/tests/chains/Ronin/TWAnySignerTests.cpp index cabaf560b68..f9a6ebad9fa 100644 --- a/tests/chains/Ronin/TWAnySignerTests.cpp +++ b/tests/chains/Ronin/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Ronin/TWCoinTypeTests.cpp b/tests/chains/Ronin/TWCoinTypeTests.cpp index 3549ef495a0..a1414eaae66 100644 --- a/tests/chains/Ronin/TWCoinTypeTests.cpp +++ b/tests/chains/Ronin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Secret/AddressTests.cpp b/tests/chains/Secret/AddressTests.cpp index 0295179e533..b1387110bb4 100644 --- a/tests/chains/Secret/AddressTests.cpp +++ b/tests/chains/Secret/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Secret/SignerTests.cpp b/tests/chains/Secret/SignerTests.cpp index 5bb99917be6..6980806f46c 100644 --- a/tests/chains/Secret/SignerTests.cpp +++ b/tests/chains/Secret/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Secret/TWAnyAddressTests.cpp b/tests/chains/Secret/TWAnyAddressTests.cpp index 073fb314437..c7e298b7005 100644 --- a/tests/chains/Secret/TWAnyAddressTests.cpp +++ b/tests/chains/Secret/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Secret/TWAnySignerTests.cpp b/tests/chains/Secret/TWAnySignerTests.cpp index 26063c58b5a..bded5786005 100644 --- a/tests/chains/Secret/TWAnySignerTests.cpp +++ b/tests/chains/Secret/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Secret/TWCoinTypeTests.cpp b/tests/chains/Secret/TWCoinTypeTests.cpp index 62401fe8656..d6161fa2fea 100644 --- a/tests/chains/Secret/TWCoinTypeTests.cpp +++ b/tests/chains/Secret/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/SmartBitcoinCash/TWCoinTypeTests.cpp b/tests/chains/SmartBitcoinCash/TWCoinTypeTests.cpp index f08f7466371..4ec3646ce34 100644 --- a/tests/chains/SmartBitcoinCash/TWCoinTypeTests.cpp +++ b/tests/chains/SmartBitcoinCash/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/AddressTests.cpp b/tests/chains/Solana/AddressTests.cpp index c5217e3e7c9..e260deb1617 100644 --- a/tests/chains/Solana/AddressTests.cpp +++ b/tests/chains/Solana/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/ProgramTests.cpp b/tests/chains/Solana/ProgramTests.cpp index a318e462d92..578c7151954 100644 --- a/tests/chains/Solana/ProgramTests.cpp +++ b/tests/chains/Solana/ProgramTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/SignerTests.cpp b/tests/chains/Solana/SignerTests.cpp index 5b828ad7b4a..5890001cdd8 100644 --- a/tests/chains/Solana/SignerTests.cpp +++ b/tests/chains/Solana/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/TWAnySignerTests.cpp b/tests/chains/Solana/TWAnySignerTests.cpp index a96846eba74..f4c8f45c56e 100644 --- a/tests/chains/Solana/TWAnySignerTests.cpp +++ b/tests/chains/Solana/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/TWCoinTypeTests.cpp b/tests/chains/Solana/TWCoinTypeTests.cpp index c6225566d1e..5072deba1e2 100644 --- a/tests/chains/Solana/TWCoinTypeTests.cpp +++ b/tests/chains/Solana/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/TWSolanaAddressTests.cpp b/tests/chains/Solana/TWSolanaAddressTests.cpp index 1cdd42676f2..f264ff83ca5 100644 --- a/tests/chains/Solana/TWSolanaAddressTests.cpp +++ b/tests/chains/Solana/TWSolanaAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Solana/TransactionTests.cpp b/tests/chains/Solana/TransactionTests.cpp index d62e5e04368..6f531a1a78a 100644 --- a/tests/chains/Solana/TransactionTests.cpp +++ b/tests/chains/Solana/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/StarkEx/MessageSignerTests.cpp b/tests/chains/StarkEx/MessageSignerTests.cpp index 1399ce24ca7..42d43604298 100644 --- a/tests/chains/StarkEx/MessageSignerTests.cpp +++ b/tests/chains/StarkEx/MessageSignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Stellar/AddressTests.cpp b/tests/chains/Stellar/AddressTests.cpp index 9f55cc55058..a9bb1bf8f73 100644 --- a/tests/chains/Stellar/AddressTests.cpp +++ b/tests/chains/Stellar/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Stellar/TWAnySignerTests.cpp b/tests/chains/Stellar/TWAnySignerTests.cpp index 7ad662a073a..81c4f1f3ca5 100644 --- a/tests/chains/Stellar/TWAnySignerTests.cpp +++ b/tests/chains/Stellar/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Stellar/TWCoinTypeTests.cpp b/tests/chains/Stellar/TWCoinTypeTests.cpp index 2fc1c59fb4b..f9a31043da0 100644 --- a/tests/chains/Stellar/TWCoinTypeTests.cpp +++ b/tests/chains/Stellar/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Stellar/TWStellarAddressTests.cpp b/tests/chains/Stellar/TWStellarAddressTests.cpp index 97f9fc32f12..dad0ef2dcfd 100644 --- a/tests/chains/Stellar/TWStellarAddressTests.cpp +++ b/tests/chains/Stellar/TWStellarAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Stellar/TransactionTests.cpp b/tests/chains/Stellar/TransactionTests.cpp index 8a7890eac2e..13f50e8dbdb 100644 --- a/tests/chains/Stellar/TransactionTests.cpp +++ b/tests/chains/Stellar/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/THORChain/SignerTests.cpp b/tests/chains/THORChain/SignerTests.cpp index 85b6bbf68fc..72e3592ca74 100644 --- a/tests/chains/THORChain/SignerTests.cpp +++ b/tests/chains/THORChain/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/THORChain/SwapTests.cpp b/tests/chains/THORChain/SwapTests.cpp index 0e793cbc1b1..5561f3e4bf2 100644 --- a/tests/chains/THORChain/SwapTests.cpp +++ b/tests/chains/THORChain/SwapTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/THORChain/TWAnyAddressTests.cpp b/tests/chains/THORChain/TWAnyAddressTests.cpp index 52d9bc560cb..c1bd962e788 100644 --- a/tests/chains/THORChain/TWAnyAddressTests.cpp +++ b/tests/chains/THORChain/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/THORChain/TWAnySignerTests.cpp b/tests/chains/THORChain/TWAnySignerTests.cpp index 8e9e45380d7..a9539054504 100644 --- a/tests/chains/THORChain/TWAnySignerTests.cpp +++ b/tests/chains/THORChain/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/THORChain/TWCoinTypeTests.cpp b/tests/chains/THORChain/TWCoinTypeTests.cpp index de7f561af47..3ac726f0c45 100644 --- a/tests/chains/THORChain/TWCoinTypeTests.cpp +++ b/tests/chains/THORChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/THORChain/TWSwapTests.cpp b/tests/chains/THORChain/TWSwapTests.cpp index ce5f215241a..6051e50ca15 100644 --- a/tests/chains/THORChain/TWSwapTests.cpp +++ b/tests/chains/THORChain/TWSwapTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/chains/Terra/SignerTests.cpp b/tests/chains/Terra/SignerTests.cpp index 34c01feb560..619f22df7a4 100644 --- a/tests/chains/Terra/SignerTests.cpp +++ b/tests/chains/Terra/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Terra/TWCoinTypeTests.cpp b/tests/chains/Terra/TWCoinTypeTests.cpp index 464be13fa31..c99684d0a4e 100644 --- a/tests/chains/Terra/TWCoinTypeTests.cpp +++ b/tests/chains/Terra/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/TerraV2/SignerTests.cpp b/tests/chains/TerraV2/SignerTests.cpp index b1cc0c152b2..94c86f8f0e5 100644 --- a/tests/chains/TerraV2/SignerTests.cpp +++ b/tests/chains/TerraV2/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/TerraV2/TWCoinTypeTests.cpp b/tests/chains/TerraV2/TWCoinTypeTests.cpp index ee436963959..5f8cab7ea50 100644 --- a/tests/chains/TerraV2/TWCoinTypeTests.cpp +++ b/tests/chains/TerraV2/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/AddressTests.cpp b/tests/chains/Tezos/AddressTests.cpp index 38e121ce7df..adb6fb3f606 100644 --- a/tests/chains/Tezos/AddressTests.cpp +++ b/tests/chains/Tezos/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/ForgingTests.cpp b/tests/chains/Tezos/ForgingTests.cpp index ab781bb4558..8571152dbe2 100644 --- a/tests/chains/Tezos/ForgingTests.cpp +++ b/tests/chains/Tezos/ForgingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/OperationListTests.cpp b/tests/chains/Tezos/OperationListTests.cpp index 17259ed9f41..ea42fe028be 100644 --- a/tests/chains/Tezos/OperationListTests.cpp +++ b/tests/chains/Tezos/OperationListTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/PublicKeyTests.cpp b/tests/chains/Tezos/PublicKeyTests.cpp index 1048390b6c2..3131c388e92 100644 --- a/tests/chains/Tezos/PublicKeyTests.cpp +++ b/tests/chains/Tezos/PublicKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/SignerTests.cpp b/tests/chains/Tezos/SignerTests.cpp index d11504003cc..451bcdfa131 100644 --- a/tests/chains/Tezos/SignerTests.cpp +++ b/tests/chains/Tezos/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/TWAnySignerTests.cpp b/tests/chains/Tezos/TWAnySignerTests.cpp index 92a080ba8d9..1b7a3fe3e7b 100644 --- a/tests/chains/Tezos/TWAnySignerTests.cpp +++ b/tests/chains/Tezos/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tezos/TWCoinTypeTests.cpp b/tests/chains/Tezos/TWCoinTypeTests.cpp index 2c33d888f68..d55339643ca 100644 --- a/tests/chains/Tezos/TWCoinTypeTests.cpp +++ b/tests/chains/Tezos/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/TheOpenNetwork/AddressTests.cpp b/tests/chains/TheOpenNetwork/AddressTests.cpp index 8bc16cdb0a0..c96c77ef289 100644 --- a/tests/chains/TheOpenNetwork/AddressTests.cpp +++ b/tests/chains/TheOpenNetwork/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/TheOpenNetwork/SignerTests.cpp b/tests/chains/TheOpenNetwork/SignerTests.cpp index 2a108204b01..3398bf1df5e 100644 --- a/tests/chains/TheOpenNetwork/SignerTests.cpp +++ b/tests/chains/TheOpenNetwork/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/TheOpenNetwork/TWAnyAddressTests.cpp b/tests/chains/TheOpenNetwork/TWAnyAddressTests.cpp index e84bcc6061c..c0f76c560c5 100644 --- a/tests/chains/TheOpenNetwork/TWAnyAddressTests.cpp +++ b/tests/chains/TheOpenNetwork/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/TheOpenNetwork/TWAnySignerTests.cpp b/tests/chains/TheOpenNetwork/TWAnySignerTests.cpp index 3becb96799a..884e174632b 100644 --- a/tests/chains/TheOpenNetwork/TWAnySignerTests.cpp +++ b/tests/chains/TheOpenNetwork/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/TheOpenNetwork/TWCoinTypeTests.cpp b/tests/chains/TheOpenNetwork/TWCoinTypeTests.cpp index 83e8e08d400..9d1c497d6fd 100644 --- a/tests/chains/TheOpenNetwork/TWCoinTypeTests.cpp +++ b/tests/chains/TheOpenNetwork/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Theta/SignerTests.cpp b/tests/chains/Theta/SignerTests.cpp index 3f6cb122db8..ebb037b5111 100644 --- a/tests/chains/Theta/SignerTests.cpp +++ b/tests/chains/Theta/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Theta/TWAnySignerTests.cpp b/tests/chains/Theta/TWAnySignerTests.cpp index 1c18296d549..b47863b3359 100644 --- a/tests/chains/Theta/TWAnySignerTests.cpp +++ b/tests/chains/Theta/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Theta/TWCoinTypeTests.cpp b/tests/chains/Theta/TWCoinTypeTests.cpp index 94107b0898c..65ec43ce3a0 100644 --- a/tests/chains/Theta/TWCoinTypeTests.cpp +++ b/tests/chains/Theta/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Theta/TransactionTests.cpp b/tests/chains/Theta/TransactionTests.cpp index 3ff9a4b3926..aae8c5be97b 100644 --- a/tests/chains/Theta/TransactionTests.cpp +++ b/tests/chains/Theta/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/ThunderToken/TWCoinTypeTests.cpp b/tests/chains/ThunderToken/TWCoinTypeTests.cpp index 1820f72d1ea..fec4f509b8a 100644 --- a/tests/chains/ThunderToken/TWCoinTypeTests.cpp +++ b/tests/chains/ThunderToken/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/TomoChain/TWCoinTypeTests.cpp b/tests/chains/TomoChain/TWCoinTypeTests.cpp index 4b6ec3810b4..ad7780223cc 100644 --- a/tests/chains/TomoChain/TWCoinTypeTests.cpp +++ b/tests/chains/TomoChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tron/AddressTests.cpp b/tests/chains/Tron/AddressTests.cpp index 8d160ecc856..9ddf01cd19e 100644 --- a/tests/chains/Tron/AddressTests.cpp +++ b/tests/chains/Tron/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tron/SerializationTests.cpp b/tests/chains/Tron/SerializationTests.cpp index a32b5799172..b5d1c2287cc 100644 --- a/tests/chains/Tron/SerializationTests.cpp +++ b/tests/chains/Tron/SerializationTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tron/SignerTests.cpp b/tests/chains/Tron/SignerTests.cpp index bd7246d46d8..06dc485ec34 100644 --- a/tests/chains/Tron/SignerTests.cpp +++ b/tests/chains/Tron/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tron/TWAnySignerTests.cpp b/tests/chains/Tron/TWAnySignerTests.cpp index ba7f2964e7b..4600bbf6a53 100644 --- a/tests/chains/Tron/TWAnySignerTests.cpp +++ b/tests/chains/Tron/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tron/TWCoinTypeTests.cpp b/tests/chains/Tron/TWCoinTypeTests.cpp index b549e7bae86..a09982445bf 100644 --- a/tests/chains/Tron/TWCoinTypeTests.cpp +++ b/tests/chains/Tron/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Tron/TronMessageSignerTests.cpp b/tests/chains/Tron/TronMessageSignerTests.cpp new file mode 100644 index 00000000000..059ce210822 --- /dev/null +++ b/tests/chains/Tron/TronMessageSignerTests.cpp @@ -0,0 +1,35 @@ +// 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. + +#include "TestUtilities.h" +#include +#include +#include +#include + +#include + +namespace TW::Tron { + TEST(TronMessageSigner, SignMessageAndVerify) { + PrivateKey tronKey(parse_hex("75065f100e38d3f3b4c5c4235834ba8216de62272a4f03532c44b31a5734360a")); + auto msg = "Hello World"; + auto signature = Tron::MessageSigner::signMessage(tronKey, msg); + ASSERT_EQ(signature, "9bb6d11ec8a6a3fb686a8f55b123e7ec4e9746a26157f6f9e854dd72f5683b450397a7b0a9653865658de8f9243f877539882891bad30c7286c3bf5622b900471b"); + auto pubKey = tronKey.getPublicKey(TWPublicKeyTypeSECP256k1Extended); + ASSERT_TRUE(Tron::MessageSigner::verifyMessage(pubKey, msg, signature)); + } + + TEST(TWTronMessageSigner, SignAndVerifyLegacy) { + const auto privKeyData = "75065f100e38d3f3b4c5c4235834ba8216de62272a4f03532c44b31a5734360a"; + const auto privateKey = WRAP(TWPrivateKey, TWPrivateKeyCreateWithData(DATA(privKeyData).get())); + const auto message = STRING("Hello World"); + + const auto pubKey = WRAP(TWPublicKey, TWPrivateKeyGetPublicKey(privateKey.get(), TWCoinTypeTron)); + const auto signature = WRAPS(TWTronMessageSignerSignMessage(privateKey.get(), message.get())); + EXPECT_EQ(std::string(TWStringUTF8Bytes(signature.get())), "9bb6d11ec8a6a3fb686a8f55b123e7ec4e9746a26157f6f9e854dd72f5683b450397a7b0a9653865658de8f9243f877539882891bad30c7286c3bf5622b900471b"); + EXPECT_TRUE(TWTronMessageSignerVerifyMessage(pubKey.get(), message.get(), signature.get())); + } +} diff --git a/tests/chains/VeChain/SignerTests.cpp b/tests/chains/VeChain/SignerTests.cpp index 71ab6ccef4b..6dfd156a7b6 100644 --- a/tests/chains/VeChain/SignerTests.cpp +++ b/tests/chains/VeChain/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/VeChain/TWAnySignerTests.cpp b/tests/chains/VeChain/TWAnySignerTests.cpp index 992e65dbc51..7eb04b0cda1 100644 --- a/tests/chains/VeChain/TWAnySignerTests.cpp +++ b/tests/chains/VeChain/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/VeChain/TWCoinTypeTests.cpp b/tests/chains/VeChain/TWCoinTypeTests.cpp index 60d7e2b709c..123ff9b6242 100644 --- a/tests/chains/VeChain/TWCoinTypeTests.cpp +++ b/tests/chains/VeChain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Viacoin/TWCoinTypeTests.cpp b/tests/chains/Viacoin/TWCoinTypeTests.cpp index 3fcc86d7e37..83efc7566eb 100644 --- a/tests/chains/Viacoin/TWCoinTypeTests.cpp +++ b/tests/chains/Viacoin/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Viacoin/TWViacoinAddressTests.cpp b/tests/chains/Viacoin/TWViacoinAddressTests.cpp index d4ea5b115ea..d31ce2acbd1 100644 --- a/tests/chains/Viacoin/TWViacoinAddressTests.cpp +++ b/tests/chains/Viacoin/TWViacoinAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/WAX/TWAnySignerTests.cpp b/tests/chains/WAX/TWAnySignerTests.cpp index 4074293d5e3..44e92e8d53a 100644 --- a/tests/chains/WAX/TWAnySignerTests.cpp +++ b/tests/chains/WAX/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/WAX/TWCoinTypeTests.cpp b/tests/chains/WAX/TWCoinTypeTests.cpp index 95e2880dc77..a28219ba786 100644 --- a/tests/chains/WAX/TWCoinTypeTests.cpp +++ b/tests/chains/WAX/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Wanchain/TWCoinTypeTests.cpp b/tests/chains/Wanchain/TWCoinTypeTests.cpp index cc49f5ae5ae..22baff337e0 100644 --- a/tests/chains/Wanchain/TWCoinTypeTests.cpp +++ b/tests/chains/Wanchain/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Waves/AddressTests.cpp b/tests/chains/Waves/AddressTests.cpp index 1e99f576d1e..a2e2fab7442 100644 --- a/tests/chains/Waves/AddressTests.cpp +++ b/tests/chains/Waves/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Waves/LeaseTests.cpp b/tests/chains/Waves/LeaseTests.cpp index 53f6e192cbd..8428544af3e 100644 --- a/tests/chains/Waves/LeaseTests.cpp +++ b/tests/chains/Waves/LeaseTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Waves/SignerTests.cpp b/tests/chains/Waves/SignerTests.cpp index 95938c16d39..26fdb7292de 100644 --- a/tests/chains/Waves/SignerTests.cpp +++ b/tests/chains/Waves/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Waves/TWAnySignerTests.cpp b/tests/chains/Waves/TWAnySignerTests.cpp index 213fffd7771..df7b3afae3b 100644 --- a/tests/chains/Waves/TWAnySignerTests.cpp +++ b/tests/chains/Waves/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Waves/TWCoinTypeTests.cpp b/tests/chains/Waves/TWCoinTypeTests.cpp index 6460c3cbff0..83b463552f5 100644 --- a/tests/chains/Waves/TWCoinTypeTests.cpp +++ b/tests/chains/Waves/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Waves/TransactionTests.cpp b/tests/chains/Waves/TransactionTests.cpp index 1e2f1354d8b..f97e76784ad 100644 --- a/tests/chains/Waves/TransactionTests.cpp +++ b/tests/chains/Waves/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/XRP/AddressTests.cpp b/tests/chains/XRP/AddressTests.cpp index 591b2842123..cc83acadf5e 100644 --- a/tests/chains/XRP/AddressTests.cpp +++ b/tests/chains/XRP/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/XRP/TWAnySignerTests.cpp b/tests/chains/XRP/TWAnySignerTests.cpp index 184c8a21137..6b55b2976b3 100644 --- a/tests/chains/XRP/TWAnySignerTests.cpp +++ b/tests/chains/XRP/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/XRP/TWCoinTypeTests.cpp b/tests/chains/XRP/TWCoinTypeTests.cpp index 1f1a967a712..2c69d2c7449 100644 --- a/tests/chains/XRP/TWCoinTypeTests.cpp +++ b/tests/chains/XRP/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/XRP/TWRippleAddressTests.cpp b/tests/chains/XRP/TWRippleAddressTests.cpp index 6c21a4a4bc5..2254878d89a 100644 --- a/tests/chains/XRP/TWRippleAddressTests.cpp +++ b/tests/chains/XRP/TWRippleAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/XRP/TransactionTests.cpp b/tests/chains/XRP/TransactionTests.cpp index c2ff41a54b6..56da08e9139 100644 --- a/tests/chains/XRP/TransactionTests.cpp +++ b/tests/chains/XRP/TransactionTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zcash/AddressTests.cpp b/tests/chains/Zcash/AddressTests.cpp index d539ac10b77..8c221c3daab 100644 --- a/tests/chains/Zcash/AddressTests.cpp +++ b/tests/chains/Zcash/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zcash/TWCoinTypeTests.cpp b/tests/chains/Zcash/TWCoinTypeTests.cpp index 46deb231511..e9727d9eb62 100644 --- a/tests/chains/Zcash/TWCoinTypeTests.cpp +++ b/tests/chains/Zcash/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zcash/TWZcashAddressTests.cpp b/tests/chains/Zcash/TWZcashAddressTests.cpp index d3820059c5a..006498644da 100644 --- a/tests/chains/Zcash/TWZcashAddressTests.cpp +++ b/tests/chains/Zcash/TWZcashAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zcash/TWZcashTransactionTests.cpp b/tests/chains/Zcash/TWZcashTransactionTests.cpp index aae9fc24cd8..858f163bb70 100644 --- a/tests/chains/Zcash/TWZcashTransactionTests.cpp +++ b/tests/chains/Zcash/TWZcashTransactionTests.cpp @@ -1,5 +1,5 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zelcash/TWCoinTypeTests.cpp b/tests/chains/Zelcash/TWCoinTypeTests.cpp index 29ff10fe24e..040deb768c4 100644 --- a/tests/chains/Zelcash/TWCoinTypeTests.cpp +++ b/tests/chains/Zelcash/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zelcash/TWZelcashAddressTests.cpp b/tests/chains/Zelcash/TWZelcashAddressTests.cpp index f78524d8898..cba68ab86b4 100644 --- a/tests/chains/Zelcash/TWZelcashAddressTests.cpp +++ b/tests/chains/Zelcash/TWZelcashAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zelcash/TWZelcashTransactionTests.cpp b/tests/chains/Zelcash/TWZelcashTransactionTests.cpp index bf90d832ae4..431fe61c435 100644 --- a/tests/chains/Zelcash/TWZelcashTransactionTests.cpp +++ b/tests/chains/Zelcash/TWZelcashTransactionTests.cpp @@ -1,5 +1,5 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zilliqa/AddressTests.cpp b/tests/chains/Zilliqa/AddressTests.cpp index 440df29db64..d682239df96 100644 --- a/tests/chains/Zilliqa/AddressTests.cpp +++ b/tests/chains/Zilliqa/AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Zilliqa/SignatureTests.cpp b/tests/chains/Zilliqa/SignatureTests.cpp index 37684d1b11b..6f11ae3fc38 100644 --- a/tests/chains/Zilliqa/SignatureTests.cpp +++ b/tests/chains/Zilliqa/SignatureTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zilliqa/SignerTests.cpp b/tests/chains/Zilliqa/SignerTests.cpp index 5e7ef3accc5..9606d060211 100644 --- a/tests/chains/Zilliqa/SignerTests.cpp +++ b/tests/chains/Zilliqa/SignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Zilliqa/TWAnySignerTests.cpp b/tests/chains/Zilliqa/TWAnySignerTests.cpp index acf610c7a29..227a10caf80 100644 --- a/tests/chains/Zilliqa/TWAnySignerTests.cpp +++ b/tests/chains/Zilliqa/TWAnySignerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/Zilliqa/TWCoinTypeTests.cpp b/tests/chains/Zilliqa/TWCoinTypeTests.cpp index d0d51a694b2..59288082520 100644 --- a/tests/chains/Zilliqa/TWCoinTypeTests.cpp +++ b/tests/chains/Zilliqa/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/Zilliqa/TWZilliqaAddressTests.cpp b/tests/chains/Zilliqa/TWZilliqaAddressTests.cpp index 2677af67c45..b9c6ce74002 100644 --- a/tests/chains/Zilliqa/TWZilliqaAddressTests.cpp +++ b/tests/chains/Zilliqa/TWZilliqaAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/chains/ZkSyncV2/TWCoinTypeTests.cpp b/tests/chains/ZkSyncV2/TWCoinTypeTests.cpp index 64b719a3f54..0b1fd541def 100644 --- a/tests/chains/ZkSyncV2/TWCoinTypeTests.cpp +++ b/tests/chains/ZkSyncV2/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/chains/xDai/TWCoinTypeTests.cpp b/tests/chains/xDai/TWCoinTypeTests.cpp index c49ec7395f1..5e1e39a38c8 100644 --- a/tests/chains/xDai/TWCoinTypeTests.cpp +++ b/tests/chains/xDai/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/common/AnyAddressTests.cpp b/tests/common/AnyAddressTests.cpp index 9adc700a2a1..23dbe0d962c 100644 --- a/tests/common/AnyAddressTests.cpp +++ b/tests/common/AnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/BCSTests.cpp b/tests/common/BCSTests.cpp index 1182d6e2d87..f12f8242612 100644 --- a/tests/common/BCSTests.cpp +++ b/tests/common/BCSTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// Copyright © 2017-2023 Trust Wallet. // Created by Clément Doumergue // // This file is part of Trust. The full Trust copyright notice, including diff --git a/tests/common/Base64Tests.cpp b/tests/common/Base64Tests.cpp index 339c4859175..503c79bdf42 100644 --- a/tests/common/Base64Tests.cpp +++ b/tests/common/Base64Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/BaseEncoding.cpp b/tests/common/BaseEncoding.cpp index 48003ec5fad..d876682a9ab 100644 --- a/tests/common/BaseEncoding.cpp +++ b/tests/common/BaseEncoding.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/Bech32AddressTests.cpp b/tests/common/Bech32AddressTests.cpp index 844d8a7276f..6f8b8995896 100644 --- a/tests/common/Bech32AddressTests.cpp +++ b/tests/common/Bech32AddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/Bech32Tests.cpp b/tests/common/Bech32Tests.cpp index 9c8b0b32baa..249d0997a71 100644 --- a/tests/common/Bech32Tests.cpp +++ b/tests/common/Bech32Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/common/BinaryCodingTests.cpp b/tests/common/BinaryCodingTests.cpp index 1627a90951c..225a3c6fd84 100644 --- a/tests/common/BinaryCodingTests.cpp +++ b/tests/common/BinaryCodingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/CborTests.cpp b/tests/common/CborTests.cpp index 592b0ec9322..1b0bfb41f56 100644 --- a/tests/common/CborTests.cpp +++ b/tests/common/CborTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/CoinAddressDerivationTests.cpp b/tests/common/CoinAddressDerivationTests.cpp index 82fab42555a..5035acd631e 100644 --- a/tests/common/CoinAddressDerivationTests.cpp +++ b/tests/common/CoinAddressDerivationTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/CoinAddressValidationTests.cpp b/tests/common/CoinAddressValidationTests.cpp index 24912e02e3e..dbbae8459dd 100644 --- a/tests/common/CoinAddressValidationTests.cpp +++ b/tests/common/CoinAddressValidationTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/common/DataTests.cpp b/tests/common/DataTests.cpp index dec40018c9c..1dafab2c2fb 100644 --- a/tests/common/DataTests.cpp +++ b/tests/common/DataTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/EncryptTests.cpp b/tests/common/EncryptTests.cpp index 74fe4a1f13a..f55237294ce 100644 --- a/tests/common/EncryptTests.cpp +++ b/tests/common/EncryptTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/HDWallet/HDWalletInternalTests.cpp b/tests/common/HDWallet/HDWalletInternalTests.cpp index c4393e4affa..08d0b655bd3 100644 --- a/tests/common/HDWallet/HDWalletInternalTests.cpp +++ b/tests/common/HDWallet/HDWalletInternalTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/HDWallet/HDWalletTests.cpp b/tests/common/HDWallet/HDWalletTests.cpp index 44441d5b113..ec54d6b983e 100644 --- a/tests/common/HDWallet/HDWalletTests.cpp +++ b/tests/common/HDWallet/HDWalletTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/HashTests.cpp b/tests/common/HashTests.cpp index c60acec946c..224ba408a26 100644 --- a/tests/common/HashTests.cpp +++ b/tests/common/HashTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/HexCodingTests.cpp b/tests/common/HexCodingTests.cpp index 91ebe83150d..1656c2e8a74 100644 --- a/tests/common/HexCodingTests.cpp +++ b/tests/common/HexCodingTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/Keystore/DerivationPathTests.cpp b/tests/common/Keystore/DerivationPathTests.cpp index 62d21aab939..da293ca8fb4 100644 --- a/tests/common/Keystore/DerivationPathTests.cpp +++ b/tests/common/Keystore/DerivationPathTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/Keystore/StoredKeyTests.cpp b/tests/common/Keystore/StoredKeyTests.cpp index 677ce21a0e2..ad1e1c03e68 100644 --- a/tests/common/Keystore/StoredKeyTests.cpp +++ b/tests/common/Keystore/StoredKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/common/MnemonicTests.cpp b/tests/common/MnemonicTests.cpp index c82b08a82f5..b47124533b9 100644 --- a/tests/common/MnemonicTests.cpp +++ b/tests/common/MnemonicTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/common/NumericLiteralTests.cpp b/tests/common/NumericLiteralTests.cpp index 07813e2f48e..f4f73b79e01 100644 --- a/tests/common/NumericLiteralTests.cpp +++ b/tests/common/NumericLiteralTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/PrivateKeyTests.cpp b/tests/common/PrivateKeyTests.cpp index f969ce40c8e..ae9c3494df6 100644 --- a/tests/common/PrivateKeyTests.cpp +++ b/tests/common/PrivateKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/PublicKeyTests.cpp b/tests/common/PublicKeyTests.cpp index 1dae03fb237..def4b0391d1 100644 --- a/tests/common/PublicKeyTests.cpp +++ b/tests/common/PublicKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/TestUtilities.cpp b/tests/common/TestUtilities.cpp index 76e34fd35f1..d6c48ea39f6 100644 --- a/tests/common/TestUtilities.cpp +++ b/tests/common/TestUtilities.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/TestUtilities.h b/tests/common/TestUtilities.h index 78c0d89cb39..0ede12aa9e4 100644 --- a/tests/common/TestUtilities.h +++ b/tests/common/TestUtilities.h @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/common/TransactionCompilerTests.cpp b/tests/common/TransactionCompilerTests.cpp index e2d26f1d07d..398f10e8dde 100644 --- a/tests/common/TransactionCompilerTests.cpp +++ b/tests/common/TransactionCompilerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/Uint256Tests.cpp b/tests/common/Uint256Tests.cpp index a396e1e0318..57fc6d07fa4 100644 --- a/tests/common/Uint256Tests.cpp +++ b/tests/common/Uint256Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/WalletConsoleTests.cpp b/tests/common/WalletConsoleTests.cpp index e6bdfc9be62..5b51118d118 100644 --- a/tests/common/WalletConsoleTests.cpp +++ b/tests/common/WalletConsoleTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/algorithm/erase_tests.cpp b/tests/common/algorithm/erase_tests.cpp index 6a0ca0c41aa..1cb2937caed 100644 --- a/tests/common/algorithm/erase_tests.cpp +++ b/tests/common/algorithm/erase_tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/algorithm/sort_copy_tests.cpp b/tests/common/algorithm/sort_copy_tests.cpp index 2603ee27b5a..ccb59b45490 100644 --- a/tests/common/algorithm/sort_copy_tests.cpp +++ b/tests/common/algorithm/sort_copy_tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/algorithm/string.cpp b/tests/common/algorithm/string.cpp index 081e5e99939..dca8a1fbb45 100644 --- a/tests/common/algorithm/string.cpp +++ b/tests/common/algorithm/string.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/algorithm/to_array_tests.cpp b/tests/common/algorithm/to_array_tests.cpp index 58d181ad663..d358dc391ff 100644 --- a/tests/common/algorithm/to_array_tests.cpp +++ b/tests/common/algorithm/to_array_tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/memory/memzero_tests.cpp b/tests/common/memory/memzero_tests.cpp index 47fba2f4697..b16c76ef5e6 100644 --- a/tests/common/memory/memzero_tests.cpp +++ b/tests/common/memory/memzero_tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/operators/equality_comparable_tests.cpp b/tests/common/operators/equality_comparable_tests.cpp index 134d172968e..eaa6ed9bf20 100644 --- a/tests/common/operators/equality_comparable_tests.cpp +++ b/tests/common/operators/equality_comparable_tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/common/rust/bindgen/WalletCoreRsTests.cpp b/tests/common/rust/bindgen/WalletCoreRsTests.cpp index d07dc9a4b7d..6267a7d825c 100644 --- a/tests/common/rust/bindgen/WalletCoreRsTests.cpp +++ b/tests/common/rust/bindgen/WalletCoreRsTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWAESTests.cpp b/tests/interface/TWAESTests.cpp index 0ee04dfdc5b..b0fd9dd9dca 100644 --- a/tests/interface/TWAESTests.cpp +++ b/tests/interface/TWAESTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWAccountTests.cpp b/tests/interface/TWAccountTests.cpp index 5a8bcf4661d..f1ec11cb252 100644 --- a/tests/interface/TWAccountTests.cpp +++ b/tests/interface/TWAccountTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWAnyAddressTests.cpp b/tests/interface/TWAnyAddressTests.cpp index 8096cd87182..6f73826a477 100644 --- a/tests/interface/TWAnyAddressTests.cpp +++ b/tests/interface/TWAnyAddressTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWBase32Tests.cpp b/tests/interface/TWBase32Tests.cpp index a8582fa23f5..b6fd92f29e2 100644 --- a/tests/interface/TWBase32Tests.cpp +++ b/tests/interface/TWBase32Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWBase58Tests.cpp b/tests/interface/TWBase58Tests.cpp index f2c35aa11fe..88516a511bb 100644 --- a/tests/interface/TWBase58Tests.cpp +++ b/tests/interface/TWBase58Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWBase64Tests.cpp b/tests/interface/TWBase64Tests.cpp index fc5332dfdd5..e553bb83990 100644 --- a/tests/interface/TWBase64Tests.cpp +++ b/tests/interface/TWBase64Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWCoinTypeTests.cpp b/tests/interface/TWCoinTypeTests.cpp index d5c31585372..57b171b5f84 100644 --- a/tests/interface/TWCoinTypeTests.cpp +++ b/tests/interface/TWCoinTypeTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWDataTests.cpp b/tests/interface/TWDataTests.cpp index 015c5e12b00..7094db38a88 100644 --- a/tests/interface/TWDataTests.cpp +++ b/tests/interface/TWDataTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWDataVectorTests.cpp b/tests/interface/TWDataVectorTests.cpp index 36a984c2e2c..8f467925627 100644 --- a/tests/interface/TWDataVectorTests.cpp +++ b/tests/interface/TWDataVectorTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWDerivationPathTests.cpp b/tests/interface/TWDerivationPathTests.cpp index 15db6b2645e..43991b71ddf 100644 --- a/tests/interface/TWDerivationPathTests.cpp +++ b/tests/interface/TWDerivationPathTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWHDWalletTests.cpp b/tests/interface/TWHDWalletTests.cpp index 147ecad674e..3bdd2d040dc 100644 --- a/tests/interface/TWHDWalletTests.cpp +++ b/tests/interface/TWHDWalletTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWHRPTests.cpp b/tests/interface/TWHRPTests.cpp index 616938fca6a..443d138588b 100644 --- a/tests/interface/TWHRPTests.cpp +++ b/tests/interface/TWHRPTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWHashTests.cpp b/tests/interface/TWHashTests.cpp index e67d0aeb36f..cce13a574f1 100644 --- a/tests/interface/TWHashTests.cpp +++ b/tests/interface/TWHashTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWMnemonicTests.cpp b/tests/interface/TWMnemonicTests.cpp index df507c553a9..5233a447cc2 100644 --- a/tests/interface/TWMnemonicTests.cpp +++ b/tests/interface/TWMnemonicTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2021 Trust Wallet. +// 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 diff --git a/tests/interface/TWPBKDF2Tests.cpp b/tests/interface/TWPBKDF2Tests.cpp index 57c48c73083..71dff4798a0 100644 --- a/tests/interface/TWPBKDF2Tests.cpp +++ b/tests/interface/TWPBKDF2Tests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWPrivateKeyTests.cpp b/tests/interface/TWPrivateKeyTests.cpp index fd9787e2732..35b21d96e25 100644 --- a/tests/interface/TWPrivateKeyTests.cpp +++ b/tests/interface/TWPrivateKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWPublicKeyTests.cpp b/tests/interface/TWPublicKeyTests.cpp index 64d712cc96a..b5432faf79c 100644 --- a/tests/interface/TWPublicKeyTests.cpp +++ b/tests/interface/TWPublicKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/interface/TWStoredKeyTests.cpp b/tests/interface/TWStoredKeyTests.cpp index 99f2df1ab54..1dc55cd4782 100644 --- a/tests/interface/TWStoredKeyTests.cpp +++ b/tests/interface/TWStoredKeyTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWStringTests.cpp b/tests/interface/TWStringTests.cpp index e79755ba76d..e318468e07d 100644 --- a/tests/interface/TWStringTests.cpp +++ b/tests/interface/TWStringTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2020 Trust Wallet. +// 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 diff --git a/tests/interface/TWTransactionCompilerTests.cpp b/tests/interface/TWTransactionCompilerTests.cpp index fa97c94b719..6d5be5d8f5d 100644 --- a/tests/interface/TWTransactionCompilerTests.cpp +++ b/tests/interface/TWTransactionCompilerTests.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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 diff --git a/tests/main.cpp b/tests/main.cpp index cd1077f409b..77776b964c3 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -1,4 +1,4 @@ -// Copyright © 2017-2022 Trust Wallet. +// 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