@@ -70,17 +70,17 @@ This is necessary because
7070> - On Windows, it uses ` Invoke-WebRequest ` and ` Start-Process ` in PowerShell for a similar effect.
7171
7272To activate HTS emulation in your tests, you need to add the following setup code in your test files.
73- Import our wrapper ` library ` to deploy HTS emulation and enable cheat codes for it.
73+ Import our System Contracts ` library ` to deploy HTS emulation and enable cheat codes for it.
7474
7575``` solidity
76- import {HtsSetup } from "hedera-forking/HtsSetup .sol";
76+ import {Hsc } from "hedera-forking/Hsc .sol";
7777```
7878
7979and then invoke it in your [ test setup] ( https://book.getfoundry.sh/forge/writing-tests )
8080
8181``` solidity
8282 function setUp() public {
83- HtsSetup .htsSetup();
83+ Hsc .htsSetup();
8484 }
8585```
8686
@@ -94,7 +94,7 @@ For example
9494pragma solidity ^0.8.0;
9595
9696import {Test} from "forge-std/Test.sol";
97- import {HtsSetup } from "hedera-forking/HtsSetup .sol";
97+ import {Hsc } from "hedera-forking/Hsc .sol";
9898import {IERC20} from "hedera-forking/IERC20.sol";
9999import {IHederaTokenService} from "hedera-forking/IHederaTokenService.sol";
100100import {HederaResponseCodes} from "hedera-forking/HederaResponseCodes.sol";
@@ -106,7 +106,7 @@ contract USDCExampleTest is Test {
106106 address private user1;
107107
108108 function setUp() external {
109- HtsSetup .htsSetup();
109+ Hsc .htsSetup();
110110
111111 user1 = makeAddr("user1");
112112 deal(USDC_mainnet, user1, 1000 * 10e8);
@@ -153,12 +153,12 @@ You can use all the tools and cheatcodes Foundry provides, _e.g._, `console.log`
153153pragma solidity ^0.8.0;
154154
155155import {Test, console} from "forge-std/Test.sol";
156- import {HtsSetup } from "hedera-forking/HtsSetup .sol";
156+ import {Hsc } from "hedera-forking/Hsc .sol";
157157import {IERC20} from "hedera-forking/IERC20.sol";
158158
159159contract USDCConsoleExampleTest is Test {
160160 function setUp() external {
161- HtsSetup .htsSetup();
161+ Hsc .htsSetup();
162162 }
163163
164164 function test_using_console_log() view external {
0 commit comments