2018-06-18 20:29:37 -05:00
|
|
|
# -*- mode: snippet -*-
|
|
|
|
# group: file templates
|
|
|
|
# contributor: Edmund Miller
|
|
|
|
# name: solidity template
|
|
|
|
# --
|
2022-02-21 13:04:13 +03:00
|
|
|
// SPDX-License-Identifier: ${1:UNLICENSED}
|
2018-06-18 20:29:37 -05:00
|
|
|
|
2022-02-21 13:04:13 +03:00
|
|
|
pragma solidity ${2:>=0.8.7 <0.9.0};
|
2018-06-18 20:29:37 -05:00
|
|
|
|
2022-02-21 13:04:13 +03:00
|
|
|
contract $3 {
|
|
|
|
$0
|
2018-06-18 20:29:37 -05:00
|
|
|
}
|