- Update dependencies in neo-contracts-workspace
- Codename Neo Artillery
- Codename Ganache
- neon-js byte lengths refactor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var XLS = { utils: { | |
// originally https://github.com/SheetJS/js-xls/blob/4076850087785b76e6814213877eea99a8390be5/xls.js#L5135 | |
sheet_to_row_object_array_with_column_index_props: | |
function(sheet, opts) { | |
var val, row, r, hdr = {}, isempty, R, C, v; | |
var out = []; | |
opts = opts || {}; | |
if(!sheet || !sheet["!ref"]) return out; | |
r = xls_utils.decode_range(sheet["!ref"]); | |
for(R=r.s.r, C = r.s.c; C <= r.e.c; ++C) { |
I hereby claim:
- I am notatestuser on github.
- I am notatestuser (https://keybase.io/notatestuser) on keybase.
- I have a public key ASDPQRF-onN5LuTh1xlY_T8US3guoPygE82xgEE-K8MXrwo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The source code is for Solidity version | |
// greater than 0.7.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
// https://github.com/OpenZeppelin/openzeppelin-contracts | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
// Starts the contract | |
contract HelloWorld is Ownable { | |
// The keyword "public" makes variables |