From 206372f4ec1aaeef3cf653bd8f440667e7137f77 Mon Sep 17 00:00:00 2001 From: Aaron DeRuvo Date: Fri, 24 May 2024 14:10:53 +0200 Subject: [PATCH] Warn for Cel2 --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e8972d..70f0b51 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # celo-sdk-java + +> [!WARNING] +> This package uses transaction types which will [fail on CEl2](https://github.com/celo-org/celo-proposals/blob/8260b49b2ec9a87ded6727fec7d9104586eb0752/CIPs/cip-0062.md#deprecation-warning), specifically celo transaction type 0. Recommended not to use. + ## Introduction celo-sdk-java, originally adapted from Ethereum web3j, is a Java library for working with the Celo Blockchain and Celo Core Contracts. @@ -281,4 +285,4 @@ CeloRawTransaction tx = CeloRawTransaction.createCeloTransaction( ); EthSendTransaction receipt = contractKit.sendTransaction(tx); assertNotNull(receipt.getTransactionHash()); -``` \ No newline at end of file +```