docs: remove beta target in getting started docs (#4147)

This commit is contained in:
Richard Moore 2023-08-15 00:56:12 -04:00
parent 4d2e1ff810
commit 71606b5799

@ -11,7 +11,7 @@ If using NPM, you must first install Ethers.
_code: installing via NPM @lang<shell> _code: installing via NPM @lang<shell>
# Install ethers # Install ethers
/home/ricmoo/test-ethers> npm install ethers@beta-exports /home/ricmoo/test-ethers> npm install ethers
_null: _null:
@ -35,7 +35,7 @@ _code: importing in Node.js @lang<script>
_code: importing ESM in a browser @lang<script> _code: importing ESM in a browser @lang<script>
<script type="module"> <script type="module">
import { ethers } from "https://cdnjs.cloudflare.com/ajax/libs/ethers/5.7.2/ethers.min.js"; import { ethers } from "https://cdnjs.cloudflare.com/ajax/libs/ethers/6.7.0/ethers.min.js";
// Your code here... // Your code here...
</script> </script>