Skip to content

Commit ba62518

Browse files
authored
Fix links in Foundry package readme (#465)
1 parent a6d9204 commit ba62518

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

packages/core/solidity/src/zip-foundry.test.ts.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Generated by [AVA](https://avajs.dev).
9292
forge script script/MyToken.s.sol␊
9393
\`\`\`␊
9494
95-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
95+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
9696
`,
9797
`// SPDX-License-Identifier: MIT␊
9898
pragma solidity ^0.8.22;␊
@@ -298,7 +298,7 @@ Generated by [AVA](https://avajs.dev).
298298
forge script script/MyToken.s.sol --force␊
299299
\`\`\`␊
300300
301-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
301+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
302302
`,
303303
`// SPDX-License-Identifier: MIT␊
304304
pragma solidity ^0.8.22;␊
@@ -489,7 +489,7 @@ Generated by [AVA](https://avajs.dev).
489489
forge script script/MyToken.s.sol --force␊
490490
\`\`\`␊
491491
492-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
492+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
493493
`,
494494
`// SPDX-License-Identifier: MIT␊
495495
pragma solidity ^0.8.22;␊
@@ -660,7 +660,7 @@ Generated by [AVA](https://avajs.dev).
660660
forge script script/MyToken.s.sol␊
661661
\`\`\`␊
662662
663-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
663+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
664664
`,
665665
`// SPDX-License-Identifier: MIT␊
666666
pragma solidity ^0.8.22;␊
@@ -820,7 +820,7 @@ Generated by [AVA](https://avajs.dev).
820820
forge script script/MyToken.s.sol --force␊
821821
\`\`\`␊
822822
823-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
823+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
824824
`,
825825
`// SPDX-License-Identifier: MIT␊
826826
pragma solidity ^0.8.22;␊
@@ -989,7 +989,7 @@ Generated by [AVA](https://avajs.dev).
989989
forge script script/MyContract.s.sol␊
990990
\`\`\`␊
991991
992-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
992+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
993993
`,
994994
`// SPDX-License-Identifier: MIT␊
995995
pragma solidity ^0.8.22;␊
@@ -1133,7 +1133,7 @@ Generated by [AVA](https://avajs.dev).
11331133
forge script script/MyContract.s.sol --force␊
11341134
\`\`\`␊
11351135
1136-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.␊
1136+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.␊
11371137
`,
11381138
`// SPDX-License-Identifier: MIT␊
11391139
pragma solidity ^0.8.22;␊
Binary file not shown.

packages/core/solidity/src/zip-foundry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ You can simulate a deployment by running the script:
288288
forge script script/${c.name}.s.sol${c.upgradeable ? ' --force' : ''}
289289
\`\`\`
290290
291-
See [Solidity scripting guide](https://book.getfoundry.sh/tutorials/solidity-scripting) for more information.
291+
See [Solidity scripting guide](https://book.getfoundry.sh/guides/scripting-with-solidity) for more information.
292292
`;
293293

294294
export async function zipFoundry(c: Contract, opts?: GenericOptions) {

0 commit comments

Comments
 (0)