Skip to content

Commit a8eaffa

Browse files
committed
2 parents 23f1e17 + 0932e7a commit a8eaffa

File tree

23 files changed

+80
-5415
lines changed

23 files changed

+80
-5415
lines changed

.github/workflows/pr-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1818
with:
1919
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
20-
freeze-date: '2025-05-19T18:00:00Z'
20+
freeze-date: '2025-06-16T18:00:00Z'
2121
- name: Reminder for standup
2222
if: github.event.schedule == '55 8 * * 1-5'
2323
uses: Aniket-Engg/pr-reviews-reminder-action@master

CONTRIBUTING.md

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

3-
Everyone is welcome to contribute to Remix's codebase and please join our [Discord](https://discord.gg/XvMmgehAMq).
3+
Everyone is welcome to contribute to Remix's codebase and please join our [Discord](https://discord.gg/XcvfUpZPsG).
44

55
## Development
66
Remix libraries work closely with [Remix IDE](https://remix.ethereum.org). Each library has a README to explain its application.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[![GitHub contributors](https://img.shields.io/github/contributors/ethereum/remix-project?style=flat&logo=github)](https://github.com/ethereum/remix-project/graphs/contributors)
1313
[![Awesome Remix](https://img.shields.io/badge/Awesome--Remix-resources-green?logo=awesomelists)](https://github.com/ethereum/awesome-remix)
1414
[![GitHub](https://img.shields.io/github/license/ethereum/remix-project)](https://github.com/ethereum/remix-project/blob/master/LICENSE)
15-
[![Discord](https://img.shields.io/badge/join-discord-brightgreen.svg?style=flat&logo=discord)](https://discord.gg/XvMmgehAMq)
15+
[![Discord](https://img.shields.io/badge/join-discord-brightgreen.svg?style=flat&logo=discord)](https://discord.gg/XcvfUpZPsG)
1616
[![X Follow](https://img.shields.io/twitter/follow/ethereumremix?style=flat&logo=x&color=green)](https://x.com/ethereumremix)
1717

1818
</div>
@@ -267,4 +267,4 @@ parameters:
267267
- Curated list of Remix resources: https://github.com/ethereum/awesome-remix
268268
- Medium: https://medium.com/remix-ide
269269
- X: https://x.com/ethereumremix
270-
- Join Discord: https://discord.gg/XvMmgehAMq
270+
- Join Discord: https://discord.gg/XcvfUpZPsG

apps/remix-ide/src/app/tabs/locales/en/udapp.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
"udapp.environmentDocs": "Click for docs about Environment",
8787
"udapp.tooltipText2": "Open chainlist.org and get the connection specs of the chain you want to interact with.",
8888
"udapp.tooltipText3": "Click to open a bridge for converting L1 mainnet ETH to the selected network currency.",
89+
"udapp.tooltipText14": "Click to open a wallet connect modal.",
8990

9091
"udapp._comment_instanceContainerUI.tsx": "libs/remix-ui/run-tab/src/lib/components/instanceContainerUI.tsx",
9192
"udapp.deployedContracts": "Deployed Contracts",

apps/remix-ide/src/blockchain/providers/node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class NodeProvider {
4848
try {
4949
const personal = new Personal(this.executionContext.web3().currentProvider)
5050
message = isHexString(message) ? message : Web3.utils.utf8ToHex(message)
51-
personal.sign(message, account, passphrase)
51+
personal.sign(message, account, passphrase || '')
5252
.then(signedData => cb(undefined, bytesToHex(messageHash), signedData))
5353
.catch(error => cb(error, bytesToHex(messageHash), undefined))
5454
} catch (e) {

libs/ghaction-helper/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-project/ghaction-helper",
3-
"version": "0.1.51",
3+
"version": "0.1.52",
44
"description": "Solidity Tests GitHub Action Helper",
55
"main": "src/index.js",
66
"scripts": {
@@ -19,17 +19,17 @@
1919
},
2020
"homepage": "https://github.com/ethereum/remix-project#readme",
2121
"devDependencies": {
22-
"@remix-project/remix-solidity": "^0.5.57",
22+
"@remix-project/remix-solidity": "^0.5.58",
2323
"@types/chai": "^4.3.4",
2424
"typescript": "^4.9.3"
2525
},
2626
"dependencies": {
2727
"@ethereum-waffle/chai": "^3.4.4",
28-
"@remix-project/remix-simulator": "^0.2.71",
28+
"@remix-project/remix-simulator": "^0.2.72",
2929
"chai": "^4.3.7",
3030
"ethers": "^6.14.0",
3131
"web3": "^4.1.1"
3232
},
3333
"types": "./src/index.d.ts",
34-
"gitHead": "eb0a7fcd6dce43a4942a829b4320e5de6b7d80b0"
34+
"gitHead": "8f83d6c21579bf366e1308e277330ae07c01a840"
3535
}

0 commit comments

Comments
 (0)