Skip to content

Commit c5cfc3c

Browse files
authored
Merge pull request #3 from Into-the-Fathom/dev
Dev
2 parents 01b5bad + 139a600 commit c5cfc3c

File tree

1,087 files changed

+7596
-5524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,087 files changed

+7596
-5524
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE/beta-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Open an issue for a bug in the v6 beta
33
title: "Title Here"
44
labels: ["v6-beta"]
55
assignees:
6-
- ricmoo
6+
- baldyash
77
body:
88
- type: markdown
99
attributes:

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Open an issue for a bug in Ethers
33
title: "Bug Report Title"
44
labels: ["investigate"]
55
assignees:
6-
- ricmoo
6+
- baldyash
77
body:
88
- type: markdown
99
attributes:
@@ -12,7 +12,7 @@ body:
1212
1313
Thank you for taking the time to report an issue. This form is for reporting **bugs within ethers**.
1414
15-
If you are **new to ethers** or *uncertain* whether this is a bug in ethers, a bug in another framework or a bug in your own code, please [start a discussion](https://github.com/ethers-io/ethers.js/discussions) first.
15+
If you are **new to ethers** or *uncertain* whether this is a bug in ethers, a bug in another framework or a bug in your own code, please [start a discussion](https://github.com/Into-the-Fathom/ethers.js/discussions) first.
1616
- type: input
1717
id: version
1818
attributes:
@@ -25,7 +25,7 @@ body:
2525
id: search-terms
2626
attributes:
2727
label: Search Terms
28-
description: Have you searched for answers [in the documentation](https://docs.ethers.io), through [the issues](https://github.com/ethers-io/ethers.js/issues) and [on the discusions](https://github.com/ethers-io/ethers.js/discussions)? Please include the search terms you have tried. This helps us add more keywords where needed.
28+
description: Have you searched for answers [in the documentation](https://docs.ethers.io), through [the issues](https://github.com/Into-the-Fathom/ethers.js/issues) and [on the discusions](https://github.com/Into-the-Fathom/ethers.js/discussions)? Please include the search terms you have tried. This helps us add more keywords where needed.
2929
placeholder: e.g. abi, network, utf8
3030
- type: textarea
3131
id: about-the-bug

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
The best place to start a new feature request is by starting an [Idea discussion](https://github.com/ethers-io/ethers.js/discussions), to mull over the feature, discuss current options and think through the impact on the overall library.
9+
The best place to start a new feature request is by starting an [Idea discussion](https://github.com/Into-the-Fathom/ethers.js/discussions), to mull over the feature, discuss current options and think through the impact on the overall library.
1010
1111
Keep in mind that features increase the library size, and may require additional dependencies. Ethers strives to remain lean and the number of dependencies low, so many features may make more sense as ancillary packages.
1212
- type: textarea

CHANGELOG.md

Lines changed: 0 additions & 552 deletions
Large diffs are not rendered by default.

CHANGELOG.v5-beta.md

Lines changed: 0 additions & 519 deletions
Large diffs are not rendered by default.

CONTRIBUTORS.md

Lines changed: 0 additions & 338 deletions
This file was deleted.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Richard Moore
3+
Original Copyright (c) 2019 Richard Moore // Copyright (c) 2022 Fathom
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
The Ethers Project
22
==================
33

4-
[![npm (tag)](https://img.shields.io/npm/v/ethers)](https://www.npmjs.com/package/ethers)
5-
[![Node.js CI](https://github.com/ethers-io/ethers.js/workflows/Node.js%20CI/badge.svg?branch=ethers-v5-beta)](https://github.com/ethers-io/ethers.js/actions?query=workflow%3A%22Node.js+CI%22)
4+
[![npm (tag)](https://img.shields.io/npm/v/ethersfathom)](https://www.npmjs.com/package/ethersfathom)
5+
[![Node.js CI](https://github.com/Into-the-Fathom/ethers.js/workflows/Node.js%20CI/badge.svg?branch=ethers-v5-beta)](https://github.com/Into-the-Fathom/ethers.js/actions?query=workflow%3A%22Node.js+CI%22)
66

77
A complete Ethereum wallet implementation and utilities in JavaScript (and TypeScript).
88

@@ -26,12 +26,8 @@ A complete Ethereum wallet implementation and utilities in JavaScript (and TypeS
2626
Keep Updated
2727
------------
2828

29-
For the latest news and advisories, please follow the
30-
[@ethersproject](https://twitter.com/ethersproject) on Twitter (low-traffic,
31-
non-marketing, important information only) as well as watch this GitHub project.
32-
3329
For the latest changes, see the
34-
[CHANGELOG](https://github.com/ethers-io/ethers.js/blob/master/CHANGELOG.md).
30+
[CHANGELOG](https://github.com/Into-the-Fathom/ethers.js/blob/master/CHANGELOG.md).
3531

3632

3733
Installing
@@ -40,22 +36,7 @@ Installing
4036
**node.js**
4137

4238
```
43-
/home/ricmoo/some_project> npm install --save ethers
44-
```
45-
46-
**browser (UMD)**
47-
48-
```
49-
<script src="https://cdn.ethers.io/lib/ethers-5.6.umd.min.js" type="text/javascript">
50-
</script>
51-
```
52-
53-
**browser (ESM)**
54-
55-
```
56-
<script type="module">
57-
import { ethers } from "https://cdn.ethers.io/lib/ethers-5.6.esm.min.js";
58-
</script>
39+
/home/your_name/some_project> npm install --save ethersfathom
5940
```
6041

6142

@@ -109,9 +90,9 @@ everyone else with packages they do not need.
10990

11091
We will keep a list of useful packages here.
11192

112-
- `@ethersproject/experimental` ([documentation](https://docs.ethers.io/v5/api/experimental/))
113-
- `@ethersproject/cli` ([documentation](https://docs.ethers.io/v5/cli/))
114-
- `@ethersproject/hardware-wallets` ([documentation](https://docs.ethers.io/v5/api/other/hardware/))
93+
- `@baldyash/experimental` ([documentation](https://docs.ethers.io/v5/api/experimental/))
94+
- `@baldyash/cli` ([documentation](https://docs.ethers.io/v5/cli/))
95+
- `@baldyash/hardware-wallets` ([documentation](https://docs.ethers.io/v5/api/other/hardware/))
11596

11697

11798
License

SECURITY.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,17 @@ Maintaining multiple versions of the library is quite time consuming, so
66
the majority of the effort is focused on the latest major release.
77

88
If you do require a version outside of this chart updated with patch fix,
9-
please [contact me](mailto:github@ricmoo.com).
9+
please [contact me](mailto:anton.grigorev.dev@gmail.com).
1010

1111
| Version | Supported | Initial Release |
1212
| ------- | ------------------------------------------ | ----------------- |
13-
| 5.0.x | :white_check_mark: | 2020-06-12 |
14-
| 4.0.x | :white_check_mark: (security patches only) | 2018-10-01 |
15-
| 3.0.x | :x: | 2018-03-05 |
16-
| 2.2.x | :x: | 2018-01-11 |
17-
| 2.1.x | :x: | 2017-05-22 |
18-
| 2.0.x | :x: | 2017-04-05 |
19-
| 1.0.x | :x: | 2016-08-23 |
20-
| 0.0.x | :x: | 2016-07-14 |
13+
| 0.1.x | :x: | 2022-09-16 |
2114

2215

2316
## Reporting a Vulnerability
2417

2518
If you identify a security vulnerability with this library (or any dependency),
26-
please do not hesitate to contact [github@ricmoo.com](mailto:github@ricmoo.com)
19+
please do not hesitate to contact [anton.grigorev.dev@gmail.com](mailto:anton.grigorev.dev@gmail.com)
2720
immediately.
2821

2922
I try to respond within the same day and will address any concern as quickly

0 commit comments

Comments
 (0)