Skip to content

Commit 1d0ba2c

Browse files
authored
Merge pull request #53 from ngdenterprise/devhawk/more-n3-branding
Neo 3 -> Neo N3
2 parents 9e2954f + 25da1ce commit 1d0ba2c

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -72,42 +72,42 @@
7272
{
7373
"command": "neo3-visual-devtracker.express.contractDeploy",
7474
"title": "Deploy contract to Neo Express",
75-
"category": "Neo Express 3"
75+
"category": "Neo Express N3"
7676
},
7777
{
7878
"command": "neo3-visual-devtracker.express.create",
7979
"title": "Create private blockchain",
80-
"category": "Neo Express 3"
80+
"category": "Neo Express N3"
8181
},
8282
{
8383
"command": "neo3-visual-devtracker.express.createCheckpoint",
8484
"title": "Create checkpoint",
85-
"category": "Neo Express 3"
85+
"category": "Neo Express N3"
8686
},
8787
{
8888
"command": "neo3-visual-devtracker.express.customCommand",
8989
"title": "Run custom Neo Express command",
90-
"category": "Neo Express 3"
90+
"category": "Neo Express N3"
9191
},
9292
{
9393
"command": "neo3-visual-devtracker.express.exploreStorage",
9494
"title": "Explore contract storage",
95-
"category": "Neo Express 3"
95+
"category": "Neo Express N3"
9696
},
9797
{
9898
"command": "neo3-visual-devtracker.express.reset",
9999
"title": "Reset blockchain",
100-
"category": "Neo Express 3"
100+
"category": "Neo Express N3"
101101
},
102102
{
103103
"command": "neo3-visual-devtracker.express.restoreCheckpoint",
104104
"title": "Restore checkpoint",
105-
"category": "Neo Express 3"
105+
"category": "Neo Express N3"
106106
},
107107
{
108108
"command": "neo3-visual-devtracker.express.run",
109109
"title": "Start blockchain",
110-
"category": "Neo Express 3",
110+
"category": "Neo Express N3",
111111
"icon": {
112112
"light": "resources/light/play.svg",
113113
"dark": "resources/dark/play.svg"
@@ -116,66 +116,66 @@
116116
{
117117
"command": "neo3-visual-devtracker.express.runAdvanced",
118118
"title": "Start blockchain (with custom options)...",
119-
"category": "Neo Express 3"
119+
"category": "Neo Express N3"
120120
},
121121
{
122122
"command": "neo3-visual-devtracker.express.stop",
123123
"title": "Stop blockchain",
124-
"category": "Neo Express 3"
124+
"category": "Neo Express N3"
125125
},
126126
{
127127
"command": "neo3-visual-devtracker.express.transfer",
128128
"title": "Transfer assets",
129-
"category": "Neo Express 3"
129+
"category": "Neo Express N3"
130130
},
131131
{
132132
"command": "neo3-visual-devtracker.express.walletCreate",
133133
"title": "Create wallet",
134-
"category": "Neo Express 3"
134+
"category": "Neo Express N3"
135135
},
136136
{
137137
"command": "neo3-visual-devtracker.neo.contractDeploy",
138138
"title": "Deploy contract",
139-
"category": "Neo 3"
139+
"category": "Neo N3"
140140
},
141141
{
142142
"command": "neo3-visual-devtracker.neo.invokeContract",
143143
"title": "Invoke contract",
144-
"category": "Neo 3"
144+
"category": "Neo N3"
145145
},
146146
{
147147
"command": "neo3-visual-devtracker.neo.newContract",
148148
"title": "Create contract",
149-
"category": "Neo 3"
149+
"category": "Neo N3"
150150
},
151151
{
152152
"command": "neo3-visual-devtracker.neo.walletCreate",
153153
"title": "Create wallet",
154-
"category": "Neo 3"
154+
"category": "Neo N3"
155155
},
156156
{
157157
"command": "neo3-visual-devtracker.tracker.openTracker",
158-
"title": "Open Neo Visual DevTracker",
159-
"category": "Neo 3 Visual DevTracker",
158+
"title": "Open Neo N3 Visual DevTracker",
159+
"category": "Neo N3 Visual DevTracker",
160160
"icon": {
161161
"light": "resources/light/open.svg",
162162
"dark": "resources/dark/open.svg"
163163
}
164164
},
165165
{
166166
"command": "neo3-visual-devtracker.connect",
167-
"title": "Connect to a Neo blockchain",
168-
"category": "Neo 3 Extension"
167+
"title": "Connect to a Neo N3 blockchain",
168+
"category": "Neo N3 Extension"
169169
},
170170
{
171171
"command": "neo3-visual-devtracker.customizeServerList",
172172
"title": "Customize blockchain list",
173-
"category": "Neo 3 Extension"
173+
"category": "Neo N3 Extension"
174174
},
175175
{
176176
"command": "neo3-visual-devtracker.disconnect",
177177
"title": "Disconnect from current Neo blockchain",
178-
"category": "Neo 3 Extension"
178+
"category": "Neo N3 Extension"
179179
}
180180
],
181181
"menus": {
@@ -293,7 +293,7 @@
293293
"activitybar": [
294294
{
295295
"id": "neo3-visual-devtracker-mainView",
296-
"title": "Neo 3 Visual DevTracker",
296+
"title": "Neo N3 Visual DevTracker",
297297
"icon": "resources/n3-logo.png"
298298
}
299299
]

src/extension/fileDetectors/serverListDetector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const UNKNOWN_BLOCKCHAIN =
3131
// current workspace):
3232
const WELL_KNOWN_BLOCKCHAINS: { [genesisHash: string]: string } = {
3333
"0x6fcb2719ad6a74997fbf08c9d3c1db626d5c631ea7707a400073a702c5025ffa":
34-
"Neo 3 TestNet",
34+
"Neo N3 TestNet",
3535
};
3636

3737
// These are the RPC URLs made available to users who do not have their

0 commit comments

Comments
 (0)