Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename Elrond to MultiversX (part 1). Drop tinyify dev-dependency (npm audit issues) #247

Merged
merged 6 commits into from
Jan 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/erdjs-publish-not-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo " - [npmjs](https://www.npmjs.com/package/@elrondnetwork/erdjs)" >> notes.txt
echo " - [CHANGELOG](https://github.com/ElrondNetwork/elrond-sdk-erdjs/blob/main/CHANGELOG.md)" >> notes.txt
echo "" >> notes.txt

RELEASE_TAG=v$(node -p "require('./package.json').version")
gh release create --prerelease $RELEASE_TAG --target=$GITHUB_SHA --title="$RELEASE_TAG" --generate-notes --notes-file=notes.txt
gh release create --prerelease $RELEASE_TAG --target=$GITHUB_SHA --title="$RELEASE_TAG" --generate-notes

- run: npm ci
- run: npm test
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/erdjs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo " - [npmjs](https://www.npmjs.com/package/@elrondnetwork/erdjs)" >> notes.txt
echo " - [CHANGELOG](https://github.com/ElrondNetwork/elrond-sdk-erdjs/blob/main/CHANGELOG.md)" >> notes.txt
echo "" >> notes.txt

RELEASE_TAG=v$(node -p "require('./package.json').version")
gh release create $RELEASE_TAG --target=$GITHUB_SHA --title="$RELEASE_TAG" --generate-notes --notes-file=notes.txt
gh release create $RELEASE_TAG --target=$GITHUB_SHA --title="$RELEASE_TAG" --generate-notes

- run: npm ci
- run: npm test
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/erdjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ jobs:
- run: npm ci
- run: npm run compile
- run: npm run compile-browser
- run: npm run compile-browser-min
- run: npm test
478 changes: 0 additions & 478 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The MIT License (MIT)

Copyright (c) 2022 Elrond Network
Copyright (c) MultiversX

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
18 changes: 6 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,21 @@
# Elrond SDK for JavaScript
# MultiversX SDK for JavaScript and TypeScript

Elrond SDK for JavaScript and TypeScript (written in TypeScript).
MultiversX SDK for JavaScript and TypeScript (written in TypeScript).

## Documentation

- [Cookbook](https://docs.elrond.com/sdk-and-tools/erdjs/erdjs-cookbook/)
- [TypeDoc](https://elrondnetwork.github.io/elrond-sdk-docs/erdjs/latest)

## CHANGELOG

[CHANGELOG](CHANGELOG.md)
- [Cookbook](https://docs.multiversx.com/sdk-and-tools/erdjs/erdjs-cookbook/)

## Distribution

[npm](https://www.npmjs.com/package/@elrondnetwork/erdjs)
[npm](https://www.npmjs.com/package/@multiversx/erdjs)

## Installation

`erdjs` is delivered via **npm** and it can be installed as follows:

```
npm install @elrondnetwork/erdjs
npm install @multiversx/erdjs
```

## Development
Expand All @@ -43,7 +38,6 @@ In order to compile `erdjs`, run the following:
npm install
npm run compile
npm run compile-browser
npm run compile-browser-min
```

### Running the tests
Expand All @@ -69,4 +63,4 @@ In order to run the tests **in the browser**, do as follows:
make clean && npm run browser-tests
```

For the `localnet` tests, make sure you have a *local testnet* up & running. A *local testnet* can be started from the Elrond IDE or from [erdpy](https://docs.elrond.com/developers/setup-local-testnet/).
For the `localnet` tests, make sure you have a *local testnet* up & running. In order to start a *local testnet*, follow [this](https://docs.multiversx.com/developers/setup-local-testnet/).
Loading