Skip to content

Commit 7e4d67d

Browse files
Merge pull request #15 from crypto-com/NO-JIRA-update-readme-for-removing-getContractABI-getTransactionAddress
[NO-JIRA] update readme for removing getContractABI and getTransactionAddress
2 parents 1d9f851 + c791275 commit 7e4d67d

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,6 @@ console.log(metadata20);
108108

109109
## Transaction
110110

111-
```ts
112-
const txs = await Transaction.getTransactionsByAddress('0xAddress', 'explorerKey');
113-
console.log(txs);
114-
```
115-
116111
```ts
117112
const tx = await Transaction.getTransactionByHash('0xHash');
118113
console.log(tx);
@@ -150,11 +145,6 @@ console.log(estimate);
150145

151146
## Contract
152147

153-
```ts
154-
const abi = await Contract.getContractABI('0xContract', 'explorerKey');
155-
console.log(abi);
156-
```
157-
158148
```ts
159149
const bytecode = await Contract.getContractCode('0xContract');
160150
console.log(bytecode);
@@ -242,7 +232,6 @@ console.log(ticker);
242232

243233
### Transaction Methods
244234

245-
- `Transaction.getTransactionsByAddress(address, explorerKey, session?, limit?, startBlock?, endBlock?)`: Returns transaction list.
246235
- `Transaction.getTransactionByHash(txHash)`: Returns a transaction by hash.
247236
- `Transaction.getTransactionStatus(txHash)`: Returns transaction status.
248237
- `Transaction.getTransactionCount(address)`: Returns the nonce/transaction count for a wallet.
@@ -252,7 +241,6 @@ console.log(ticker);
252241

253242
### Contract Methods
254243

255-
- `Contract.getContractABI(contractAddress, explorerKey)`: Returns the ABI of a smart contract.
256244
- `Contract.getContractCode(contractAddress)`: Returns bytecode of a smart contract.
257245

258246
### Block Methods

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crypto.com/developer-platform-client",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"private": false,
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)