|
73 | 73 | },
|
74 | 74 | "web3.reset": {
|
75 | 75 | "prefix": "web3.reset",
|
76 |
| - "body": "web3.reset(${0:true});", |
| 76 | + "body": "web3.reset(${1:true})${0:;}", |
77 | 77 | "description": "Should be called to reset state of web3. Resets everything except manager. Uninstalls all filters. Stops polling - returns undefined"
|
78 | 78 | },
|
79 | 79 | "web3.sha3": {
|
80 | 80 | "prefix": "web3.sha3",
|
81 |
| - "body": "web3.sha3(${0:string}${1:, {${2: encoding: 'hex'}}})", |
| 81 | + "body": "web3.sha3(${1:string}${2:, {${3: encoding: 'hex'}}})${0:;}", |
82 | 82 | "description": "Hash of string - returns string"
|
83 | 83 | },
|
84 | 84 | "web3.toHex": {
|
85 | 85 | "prefix": "web3.toHex",
|
86 |
| - "body": "web3.toHex(${0:value});", |
| 86 | + "body": "web3.toHex(${1:value})${0:;}", |
87 | 87 | "description": "Converts any value into HEX - returns string"
|
88 | 88 | },
|
89 | 89 | "web3.toAscii": {
|
90 | 90 | "prefix": "web3.toAscii",
|
91 |
| - "body": "web3.toAscii(${0:hexString});", |
| 91 | + "body": "web3.toAscii(${1:hexString})${0:;}", |
92 | 92 | "description": "Converts a HEX string into a ASCII string - returns string"
|
93 | 93 | },
|
94 | 94 | "web3.fromAscii": {
|
95 | 95 | "prefix": "web3.fromAscii",
|
96 |
| - "body": "web3.fromAscii(${0:asciiString}${1:, ${2:numberOfBytes}});", |
| 96 | + "body": "web3.fromAscii(${1:asciiString}${2:, ${3:numberOfBytes}})${0:;}", |
97 | 97 | "description": "Converts any ASCII string to a HEX string - returns string"
|
98 | 98 | },
|
99 | 99 | "web3.toDecimal": {
|
100 | 100 | "prefix": "web3.toDecimal",
|
101 |
| - "body": "web3.toDecimal(${0:hexString});", |
| 101 | + "body": "web3.toDecimal(${1:hexString})${0:;}", |
102 | 102 | "description": "Converts a HEX string to its number representation - returns string"
|
103 | 103 | },
|
104 | 104 | "web3.fromDecimal": {
|
105 | 105 | "prefix": "web3.fromDecimal",
|
106 |
| - "body": "web3.fromDecimal(${0:number});", |
| 106 | + "body": "web3.fromDecimal(${1:number})${0:;}", |
107 | 107 | "description": "Converts a number or number string to its HEX representation - returns string"
|
108 | 108 | },
|
109 | 109 | "web3.fromWei": {
|
110 | 110 | "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:;}", |
112 | 112 | "description": "Converts a number of wei into the following ethereum units - returns string|BigNumber"
|
113 | 113 | },
|
114 | 114 | "web3.toWei": {
|
|
118 | 118 | },
|
119 | 119 | "web3.toBigNumber": {
|
120 | 120 | "prefix": "web3.toBigNumber",
|
121 |
| - "body": "web3.toBigNumber(${0:numberOrHexString});", |
| 121 | + "body": "web3.toBigNumber(${1:numberOrHexString})${0:;}", |
122 | 122 | "description": "Converts a given number into a BigNumber instance - returns BigNumber"
|
123 | 123 | },
|
124 | 124 | "web3.isAddress": {
|
125 | 125 | "prefix": "web3.isAddress",
|
126 |
| - "body": "web3.isAddress(${0:hexString});", |
| 126 | + "body": "web3.isAddress(${1:hexString})${0:;}", |
127 | 127 | "description": "Checks if the given string is an address - returns boolean"
|
128 | 128 | },
|
129 | 129 | "web3.net.listening": {
|
130 | 130 | "prefix": "web3.net.listening",
|
131 |
| - "body": "web3.net.listening", |
| 131 | + "body": "web3.net.listening{0:;}", |
132 | 132 | "description": "This property is read only and says whether the node is actively listening for network connections or not - returns boolean"
|
133 | 133 | },
|
134 | 134 | "web3.net.getListening": {
|
135 | 135 | "prefix": "web3.net.getListening",
|
136 | 136 | "body": [
|
137 |
| - "web3.version.getListening(function (error, result) {", |
| 137 | + "web3.net.getListening(function (error, result) {", |
138 | 138 | "\t${0}",
|
139 | 139 | "});"
|
140 | 140 | ],
|
|
148 | 148 | "web3.net.getPeerCount": {
|
149 | 149 | "prefix": "web3.net.getPeerCount",
|
150 | 150 | "body": [
|
151 |
| - "web3.version.getPeerCount(function (error, result) {", |
| 151 | + "web3.net.getPeerCount(function (error, result) {", |
152 | 152 | "\t${0}",
|
153 | 153 | "});"
|
154 | 154 | ],
|
155 | 155 | "description": "This property is read only and returns the number of connected peers"
|
156 | 156 | },
|
157 | 157 | "web3.eth.defaultAccount": {
|
158 | 158 | "prefix": "web3.eth.defaultAccount",
|
159 |
| - "body": "web3.eth.defaultAccount", |
| 159 | + "body": "web3.eth.defaultAccount${0:;}", |
160 | 160 | "description": "Get default address - return string, 20 bytes. Default is undefined"
|
161 | 161 | },
|
162 | 162 | "web3.eth.defaultBlock": {
|
163 | 163 | "prefix": "web3.eth.defaultBlock",
|
164 |
| - "body": "web3.eth.defaultBlock", |
| 164 | + "body": "web3.eth.defaultBlock${0:;}", |
165 | 165 | "description": "Get default address - return string|number. Default is 'latest'"
|
166 | 166 | },
|
167 | 167 | "web3.eth.syncing": {
|
168 | 168 | "prefix": "web3.eth.syncing",
|
169 |
| - "body": "web3.eth.syncing", |
| 169 | + "body": "web3.eth.syncing${0:;}", |
170 | 170 | "description": "This property is read only and returns the either a sync object, when the node is syncing or false"
|
171 | 171 | },
|
172 | 172 | "web3.eth.getSyncing": {
|
|
189 | 189 | },
|
190 | 190 | "web3.eth.coinbase": {
|
191 | 191 | "prefix": "web3.eth.coinbase",
|
192 |
| - "body": "web3.eth.coinbase", |
| 192 | + "body": "web3.eth.coinbase${0:;}", |
193 | 193 | "description": "This property is read only and returns the coinbase address where the mining rewards go to, returns string"
|
194 | 194 | },
|
195 | 195 | "web3.eth.getCoinbase": {
|
|
203 | 203 | },
|
204 | 204 | "web3.eth.mining": {
|
205 | 205 | "prefix": "web3.eth.mining",
|
206 |
| - "body": "web3.eth.mining", |
| 206 | + "body": "web3.eth.mining${0:;}", |
207 | 207 | "description": "This property is read only and says whether the node is mining or not - returns boolean"
|
208 | 208 | },
|
209 | 209 | "web3.eth.getMining": {
|
|
217 | 217 | },
|
218 | 218 | "web3.eth.hashrate": {
|
219 | 219 | "prefix": "web3.eth.hashrate",
|
220 |
| - "body": "web3.eth.hashrate", |
| 220 | + "body": "web3.eth.hashrate${0:;}", |
221 | 221 | "description": "This property is read only and returns the number of hashes per second that the node is mining with - returns number"
|
222 | 222 | },
|
223 | 223 | "web3.eth.getHashrate": {
|
|
231 | 231 | },
|
232 | 232 | "web3.eth.gasPrice": {
|
233 | 233 | "prefix": "web3.eth.gasPrice",
|
234 |
| - "body": "web3.eth.gasPrice", |
| 234 | + "body": "web3.eth.gasPrice${0:;}", |
235 | 235 | "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"
|
236 | 236 | },
|
237 | 237 | "web3.eth.getGasPrice": {
|
|
245 | 245 | },
|
246 | 246 | "web3.eth.accounts": {
|
247 | 247 | "prefix": "web3.eth.accounts",
|
248 |
| - "body": "web3.eth.accounts", |
| 248 | + "body": "web3.eth.accounts${0:;}", |
249 | 249 | "description": "This property is read only and returns a list of accounts the node controls - returns array"
|
250 | 250 | },
|
251 | 251 | "web3.eth.getAccounts": {
|
|
259 | 259 | },
|
260 | 260 | "web3.eth.blockNumber": {
|
261 | 261 | "prefix": "web3.eth.blockNumber",
|
262 |
| - "body": "web3.eth.blockNumber", |
| 262 | + "body": "web3.eth.blockNumber${0:;}", |
263 | 263 | "description": "This property is read only and returns the current block number - returns number"
|
264 | 264 | },
|
265 | 265 | "web3.eth.getBlockNumber": {
|
|
391 | 391 | "web3.eth.call": {
|
392 | 392 | "prefix": "web3.eth.call",
|
393 | 393 | "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) {", |
395 | 395 | "\t${0}",
|
396 | 396 | "}});"
|
397 | 397 | ],
|
|
409 | 409 | "web3.eth.filter": {
|
410 | 410 | "prefix": "web3.eth.filter",
|
411 | 411 | "body": [
|
412 |
| - "web3.eth.filter(${1|'latest','pending',{object}|});" |
| 412 | + "web3.eth.filter(${1|'latest','pending',{JSONobject}|})${0:;}" |
413 | 413 | ],
|
414 | 414 | "description": "To watch for changes - returns object"
|
415 | 415 | },
|
416 | 416 | "web3.eth.contract": {
|
417 | 417 | "prefix": "web3.eth.contract",
|
418 |
| - "body": "web3.eth.contract(${1:abiArray});", |
| 418 | + "body": "web3.eth.contract(${1:abiArray})${0:;}", |
419 | 419 | "description": "Creates a contract object for a solidity contract, which can be used to initiate contracts on an address"
|
420 | 420 | },
|
421 | 421 | "web3.eth.getCompilers": {
|
|
429 | 429 | },
|
430 | 430 | "web3.eth.namereg": {
|
431 | 431 | "prefix": "web3.eth.namereg",
|
432 |
| - "body": "web3.eth.namereg", |
| 432 | + "body": "web3.eth.namereg${0:;}", |
433 | 433 | "description": "Returns GlobalRegistrar object"
|
434 | 434 | },
|
435 | 435 | "web3.db.putString": {
|
|
0 commit comments