Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/abi/code.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
const createHasher = require("blake2b");

Check warning on line 1 in src/abi/code.ts

View workflow job for this annotation

GitHub Actions / build (16.x)

Require statement not part of import statement
const CODE_HASH_LENGTH = 32;

/**
* * @deprecated Use the bytecode directly
* Bytecode of a Smart Contract, as an abstraction.
*/
export class Code {
Expand Down
2 changes: 2 additions & 0 deletions src/abi/smartContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ interface IAbi {
}

/**
* * @deprecated component. Use "SmartContractTransactionsFactory" or "SmartContractController", instead.
*
* An abstraction for deploying and interacting with Smart Contracts.
*/
export class SmartContract implements ISmartContract {
Expand Down
Loading