Skip to content

Commit 0682887

Browse files
author
John Yong
committed
fixed minor snippet issues
1 parent da5d2cd commit 0682887

File tree

2 files changed

+30
-28
lines changed

2 files changed

+30
-28
lines changed

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "web3js-snippets",
33
"displayName": "Web3js Snippets",
44
"description": "Snippets for web3js",
5-
"version": "0.1.0",
5+
"version": "0.2.0",
66
"publisher": "lemon-berry",
77
"engines": {
88
"vscode": "^1.19.0"
@@ -28,5 +28,7 @@
2828
},
2929
"homepage": "https://github.com/yikkok-yong/web3js-snippets/",
3030
"license": "MIT",
31-
"keywords": ["web3", "snippets"]
31+
"keywords": [
32+
"web3"
33+
]
3234
}

snippets/javascript-snippets.json

+26-26
Original file line numberDiff line numberDiff line change
@@ -73,42 +73,42 @@
7373
},
7474
"web3.reset": {
7575
"prefix": "web3.reset",
76-
"body": "web3.reset(${0:true});",
76+
"body": "web3.reset(${1:true})${0:;}",
7777
"description": "Should be called to reset state of web3. Resets everything except manager. Uninstalls all filters. Stops polling - returns undefined"
7878
},
7979
"web3.sha3": {
8080
"prefix": "web3.sha3",
81-
"body": "web3.sha3(${0:string}${1:, {${2: encoding: 'hex'}}})",
81+
"body": "web3.sha3(${1:string}${2:, {${3: encoding: 'hex'}}})${0:;}",
8282
"description": "Hash of string - returns string"
8383
},
8484
"web3.toHex": {
8585
"prefix": "web3.toHex",
86-
"body": "web3.toHex(${0:value});",
86+
"body": "web3.toHex(${1:value})${0:;}",
8787
"description": "Converts any value into HEX - returns string"
8888
},
8989
"web3.toAscii": {
9090
"prefix": "web3.toAscii",
91-
"body": "web3.toAscii(${0:hexString});",
91+
"body": "web3.toAscii(${1:hexString})${0:;}",
9292
"description": "Converts a HEX string into a ASCII string - returns string"
9393
},
9494
"web3.fromAscii": {
9595
"prefix": "web3.fromAscii",
96-
"body": "web3.fromAscii(${0:asciiString}${1:, ${2:numberOfBytes}});",
96+
"body": "web3.fromAscii(${1:asciiString}${2:, ${3:numberOfBytes}})${0:;}",
9797
"description": "Converts any ASCII string to a HEX string - returns string"
9898
},
9999
"web3.toDecimal": {
100100
"prefix": "web3.toDecimal",
101-
"body": "web3.toDecimal(${0:hexString});",
101+
"body": "web3.toDecimal(${1:hexString})${0:;}",
102102
"description": "Converts a HEX string to its number representation - returns string"
103103
},
104104
"web3.fromDecimal": {
105105
"prefix": "web3.fromDecimal",
106-
"body": "web3.fromDecimal(${0:number});",
106+
"body": "web3.fromDecimal(${1:number})${0:;}",
107107
"description": "Converts a number or number string to its HEX representation - returns string"
108108
},
109109
"web3.fromWei": {
110110
"prefix": "web3.fromWei",
111-
"body": "web3.fromWei(${0:number}, ${1|'kwei','mwei','gwei','szabo','finney','ether','kether','mether','gether','tether'|});",
111+
"body": "web3.fromWei(${2:number}, ${1|'kwei','mwei','gwei','szabo','finney','ether','kether','mether','gether','tether'|})${0:;}",
112112
"description": "Converts a number of wei into the following ethereum units - returns string|BigNumber"
113113
},
114114
"web3.toWei": {
@@ -118,23 +118,23 @@
118118
},
119119
"web3.toBigNumber": {
120120
"prefix": "web3.toBigNumber",
121-
"body": "web3.toBigNumber(${0:numberOrHexString});",
121+
"body": "web3.toBigNumber(${1:numberOrHexString})${0:;}",
122122
"description": "Converts a given number into a BigNumber instance - returns BigNumber"
123123
},
124124
"web3.isAddress": {
125125
"prefix": "web3.isAddress",
126-
"body": "web3.isAddress(${0:hexString});",
126+
"body": "web3.isAddress(${1:hexString})${0:;}",
127127
"description": "Checks if the given string is an address - returns boolean"
128128
},
129129
"web3.net.listening": {
130130
"prefix": "web3.net.listening",
131-
"body": "web3.net.listening",
131+
"body": "web3.net.listening{0:;}",
132132
"description": "This property is read only and says whether the node is actively listening for network connections or not - returns boolean"
133133
},
134134
"web3.net.getListening": {
135135
"prefix": "web3.net.getListening",
136136
"body": [
137-
"web3.version.getListening(function (error, result) {",
137+
"web3.net.getListening(function (error, result) {",
138138
"\t${0}",
139139
"});"
140140
],
@@ -148,25 +148,25 @@
148148
"web3.net.getPeerCount": {
149149
"prefix": "web3.net.getPeerCount",
150150
"body": [
151-
"web3.version.getPeerCount(function (error, result) {",
151+
"web3.net.getPeerCount(function (error, result) {",
152152
"\t${0}",
153153
"});"
154154
],
155155
"description": "This property is read only and returns the number of connected peers"
156156
},
157157
"web3.eth.defaultAccount": {
158158
"prefix": "web3.eth.defaultAccount",
159-
"body": "web3.eth.defaultAccount",
159+
"body": "web3.eth.defaultAccount${0:;}",
160160
"description": "Get default address - return string, 20 bytes. Default is undefined"
161161
},
162162
"web3.eth.defaultBlock": {
163163
"prefix": "web3.eth.defaultBlock",
164-
"body": "web3.eth.defaultBlock",
164+
"body": "web3.eth.defaultBlock${0:;}",
165165
"description": "Get default address - return string|number. Default is 'latest'"
166166
},
167167
"web3.eth.syncing": {
168168
"prefix": "web3.eth.syncing",
169-
"body": "web3.eth.syncing",
169+
"body": "web3.eth.syncing${0:;}",
170170
"description": "This property is read only and returns the either a sync object, when the node is syncing or false"
171171
},
172172
"web3.eth.getSyncing": {
@@ -189,7 +189,7 @@
189189
},
190190
"web3.eth.coinbase": {
191191
"prefix": "web3.eth.coinbase",
192-
"body": "web3.eth.coinbase",
192+
"body": "web3.eth.coinbase${0:;}",
193193
"description": "This property is read only and returns the coinbase address where the mining rewards go to, returns string"
194194
},
195195
"web3.eth.getCoinbase": {
@@ -203,7 +203,7 @@
203203
},
204204
"web3.eth.mining": {
205205
"prefix": "web3.eth.mining",
206-
"body": "web3.eth.mining",
206+
"body": "web3.eth.mining${0:;}",
207207
"description": "This property is read only and says whether the node is mining or not - returns boolean"
208208
},
209209
"web3.eth.getMining": {
@@ -217,7 +217,7 @@
217217
},
218218
"web3.eth.hashrate": {
219219
"prefix": "web3.eth.hashrate",
220-
"body": "web3.eth.hashrate",
220+
"body": "web3.eth.hashrate${0:;}",
221221
"description": "This property is read only and returns the number of hashes per second that the node is mining with - returns number"
222222
},
223223
"web3.eth.getHashrate": {
@@ -231,7 +231,7 @@
231231
},
232232
"web3.eth.gasPrice": {
233233
"prefix": "web3.eth.gasPrice",
234-
"body": "web3.eth.gasPrice",
234+
"body": "web3.eth.gasPrice${0:;}",
235235
"description": "This property is read only and returns the current gas price. The gas price is determined by the x latest blocks median gas price - return BigNumber"
236236
},
237237
"web3.eth.getGasPrice": {
@@ -245,7 +245,7 @@
245245
},
246246
"web3.eth.accounts": {
247247
"prefix": "web3.eth.accounts",
248-
"body": "web3.eth.accounts",
248+
"body": "web3.eth.accounts${0:;}",
249249
"description": "This property is read only and returns a list of accounts the node controls - returns array"
250250
},
251251
"web3.eth.getAccounts": {
@@ -259,7 +259,7 @@
259259
},
260260
"web3.eth.blockNumber": {
261261
"prefix": "web3.eth.blockNumber",
262-
"body": "web3.eth.blockNumber",
262+
"body": "web3.eth.blockNumber${0:;}",
263263
"description": "This property is read only and returns the current block number - returns number"
264264
},
265265
"web3.eth.getBlockNumber": {
@@ -391,7 +391,7 @@
391391
"web3.eth.call": {
392392
"prefix": "web3.eth.call",
393393
"body": [
394-
"web3.eth.call(${1:callObject}${2:, ${3|blockNum,'earliest','latest','pending'|}}${3:, function(error, result) {",
394+
"web3.eth.call(${1:callObject}${2:, ${3|blockNum,'earliest','latest','pending'|}}${4:, function(error, result) {",
395395
"\t${0}",
396396
"}});"
397397
],
@@ -409,13 +409,13 @@
409409
"web3.eth.filter": {
410410
"prefix": "web3.eth.filter",
411411
"body": [
412-
"web3.eth.filter(${1|'latest','pending',{object}|});"
412+
"web3.eth.filter(${1|'latest','pending',{JSONobject}|})${0:;}"
413413
],
414414
"description": "To watch for changes - returns object"
415415
},
416416
"web3.eth.contract": {
417417
"prefix": "web3.eth.contract",
418-
"body": "web3.eth.contract(${1:abiArray});",
418+
"body": "web3.eth.contract(${1:abiArray})${0:;}",
419419
"description": "Creates a contract object for a solidity contract, which can be used to initiate contracts on an address"
420420
},
421421
"web3.eth.getCompilers": {
@@ -429,7 +429,7 @@
429429
},
430430
"web3.eth.namereg": {
431431
"prefix": "web3.eth.namereg",
432-
"body": "web3.eth.namereg",
432+
"body": "web3.eth.namereg${0:;}",
433433
"description": "Returns GlobalRegistrar object"
434434
},
435435
"web3.db.putString": {

0 commit comments

Comments
 (0)