You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Message signing defaults to Bitcoin '\u0018Bitcoin Signed Message:\n'. See [@hypereon/chains](https://github.com/HypereonLabs/chains) for message prefix options provided by different blockchains.
39
+
Message signing defaults to Bitcoin '\u0018Bitcoin Signed Message:\n'. See [@hypereon/chains](https://github.com/hypereon-dev/chains) for message prefix options provided by different blockchains.
40
40
41
41
```javascript
42
42
import { sign, verify } from'@hypereon/message';
43
-
importmessagefrom'@hypereon/message';
43
+
importchainsfrom'@hypereon/chains';
44
44
45
-
const { messagePrefix } =message.ltc.main;
45
+
const { messagePrefix } =chains.ltc.main;
46
46
47
47
constsignature=sign({
48
48
privateKey:'...',
@@ -60,7 +60,7 @@ const isVerified = verify({
60
60
61
61
## Contributing
62
62
63
-
If you're interested in contributing, please read the [contributing docs](https://github.com/HypereonLabs/message/blob/master/CONTRIBUTING.md) before submitting a pull request.
63
+
If you're interested in contributing, please read the [contributing docs](https://github.com/hypereon-dev/message/blob/master/CONTRIBUTING.md) before submitting a pull request.
0 commit comments