Skip to content

Commit

Permalink
content: Add mention of NeoLine extension, closes #144
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Petrov <[email protected]>
  • Loading branch information
mike-petrov committed Feb 29, 2024
1 parent 8c383d7 commit 44bd62f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ $ make docker/start
Any wallet that supports WalletConnect 2.0 should work. Specifically, we've tested:

- [Neon wallet for Windows, Mac OS, Linux, Android and iOS](https://neon.coz.io/)
- [NeoLine wallet for chrome extension](https://chromewebstore.google.com/detail/neoline/cphhlgmgameodnhkjdmkpanlelnlohao)
- [Aero web wallet](https://melanke.github.io/aero-beta/) (testnet only, see #133)

## Setup guide
Expand Down
2 changes: 1 addition & 1 deletion src/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Home = ({
Connect wallet
</Button>
<Heading align="center" size={6} weight="normal">
Built with <a href="https://walletconnect.com/" target="_blank" rel="noopener noreferrer">WalletConnect</a>, tested with <a href="https://neonwallet.com/" target="_blank" rel="noopener noreferrer">NEON wallet</a>.
Built with <a href="https://walletconnect.com/" target="_blank" rel="noopener noreferrer">WalletConnect</a>, tested with <a href="https://neonwallet.com/" target="_blank" rel="noopener noreferrer">NEON wallet</a>, <a href="https://chromewebstore.google.com/detail/neoline/cphhlgmgameodnhkjdmkpanlelnlohao" target="_blank" rel="noopener noreferrer">NeoLine extension</a>.
</Heading>
</>
)}
Expand Down
6 changes: 3 additions & 3 deletions src/Profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const Profile = ({
}];

const signers = [{
scopes: 1, // WitnessScope.CalledByEntry
scopes: 'CalledByEntry',
account: Neon.create.account(walletData.account.address).scriptHash,
}];

Expand Down Expand Up @@ -185,7 +185,7 @@ const Profile = ({
}];

const signers = [{
scopes: 1, // WitnessScope.CalledByEntry
scopes: 'CalledByEntry',
account: Neon.create.account(walletData.account.address).scriptHash,
}];

Expand Down Expand Up @@ -227,7 +227,7 @@ const Profile = ({
}];

const signers = [{
scopes: 16, // WitnessScope.CustomContracts
scopes: 'CustomContracts',
account: Neon.create.account(walletData.account.address).scriptHash,
allowedContracts: [NeoFSContract.gasToken, NeoFSContract.scriptHash]
}];
Expand Down

0 comments on commit 44bd62f

Please sign in to comment.