I hereby claim:
- I am sponnet on github.
- I am sponnet (https://keybase.io/sponnet) on keybase.
- I have a public key ASAARMu54nvMR813Bv_zpqijaL7QRMLYEdvNFXgok4U6FQo
To claim this, I am signing this object:
| [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address[]", | |
| "name": "_admins", | |
| "type": "address[]" | |
| } | |
| ], | |
| "payable": false, |
I hereby claim:
To claim this, I am signing this object:
| const { Plugin } = require("@uppy/core"); | |
| const dataURItoBlob = require("@uppy/utils/lib/dataURItoBlob"); | |
| const isPreviewSupported = require("@uppy/utils/lib/isPreviewSupported"); | |
| /** | |
| * The Thumbnail Generator plugin | |
| * | |
| */ | |
| module.exports = class ThumbnailGenerator extends Plugin { |
| { | |
| "hashtagData": { | |
| "address":"0x3f0189a1647d091d111c78aacfbbddbd6b2c86b5", | |
| "name":"Settler", | |
| "description":"The first marketplace in Swarm City was #pioneer. This is the second. Post and answer requests for goods and services in this marketplace, and earn reputation as one of the earliest adopters.", | |
| "contact": | |
| [{"name":"[email protected]", | |
| "link":"mailto:[email protected]" | |
| },{ | |
| "name":"@SwarmCityHelp (Twitter)", |
| const { | |
| performance | |
| } = require('perf_hooks'); | |
| const EthCrypto = require('eth-crypto'); | |
| const identity = EthCrypto.createIdentity(); | |
| function randomString(string_length) { | |
| var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz"; | |
| //var string_length = 8; |
| gulp.task('solc', function() { | |
| glob([ | |
| 'app/contracts/*.sol', | |
| ], { | |
| cwd: '.' | |
| }, function(error, files) { | |
| var allfiles = ''; | |
| var destpath = ''; |
run a testnet geth client
geth --testnet --rpc
let it sync and then run the example above
node web3filterexample.js
It should return something like
| var express = require('express'); | |
| var request = require('request'); | |
| var app = express(); | |
| app.get('/', function(req, res) { | |
| var street = "Beekvelden"; | |
| var postal = "2840"; | |
| request.get({ |
| var dino = require('dino'); | |
| var LoginAWSmodel = dino.model({ | |
| schema: dino.schema({ | |
| table: 'dino-test', | |
| attributes: { | |
| myhash: dino.types.string, | |
| mydata: dino.types.string, | |
| }, | |
| key: { |