Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

feat: Add eNEAR transfers. #233

Merged
merged 16 commits into from
May 28, 2021
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
31 changes: 7 additions & 24 deletions .config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,31 +51,10 @@ module.exports = {
nearExplorerUrl: 'https://explorer.testnet.near.org',
nearNetworkId: 'testnet',
ethNetworkId: 'ropsten',
},
rinkeby_development: {
// library settings
ethClientAddress: '0x067421d6ba15d5c70190a1e512c5f9137a4a8168',
ethNearOnEthClientAbiText: readFileSync('./abi/nearOnEthClient.abi'),
ethEd25519Address: '0xa9e58bed3649e535dba9fa594e67e39575db3f4b',
ethErc20AbiText: readFileSync('./abi/erc20.abi'),
ethLockerAbiText: readFileSync('./abi/ERC20Locker.full.abi'),
ethLockerAddress: '0x6381a3bad6b51988497dc588496ad1177d1650ea',
ethProverAddress: '0x57d7dc68f98bd09b8d1ea46aac61c305f203f104',
ethProverAbiText: readFileSync('./abi/prover.abi'),
nearClientAccount: 'client.rinkeby.testnet',
nearHelperUrl: 'https://helper.testnet.near.org',
nearProverAccount: 'prover.rinkeby.testnet',
nearTokenFactoryAccount: 'f030221.rinkeby.testnet',

// frontend settings
featuredErc20s: JSON.stringify([
'0x3e13318e92F0C67Ca10f0120372E998d43E6a8E8', // ABND: https://github.com/chadoh/abundance-token
]),
nearNodeUrl: 'https://rpc.testnet.near.org',
nearWalletUrl: 'https://wallet.testnet.near.org',
nearExplorerUrl: 'https://explorer.testnet.near.org',
nearNetworkId: 'testnet',
ethNetworkId: 'rinkeby',
eNEARAbiText: readFileSync('./abi/eNEAR.abi'),
eNEARAddress: '0x2b3077b25909f24de5543d1e350c4d60f9e0c3ed',
nativeNEARLockerAddress: '0.e-near.testnet',
},
mainnet: {
// library settings
Expand Down Expand Up @@ -117,5 +96,9 @@ module.exports = {
nearNetworkId: 'mainnet',
ethNetworkId: 'main',

eNEARAbiText: readFileSync('./abi/eNEAR.abi'),
eNEARAddress: '0x85f17cf997934a597031b2e18a9ab6ebd4b9f6a4',
nativeNEARLockerAddress: 'e-near.near',

}
}
3 changes: 3 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ jobs:
steps:
- name: Clone the repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check codebase linting
run: |
yarn install
yarn lint
yarn commitlint
29 changes: 0 additions & 29 deletions .releaserc.js

This file was deleted.

21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,19 @@ If your change should show up in release notes as a feature, use `feat:`. If it
[storage]: https://docs.near.org/docs/concepts/storage-staking
[Node.js]: https://nodejs.org/en/download/package-manager/
[yarn]: https://yarnpkg.com/



Release the repository
----------------------

Update the repository CHANGELOG:
```
yarn changelog
```

Commit and push master:
```
git commit -m "chore: Release v2.0.0."
git tag v2.0.0
```
Empty file.
Loading