Skip to content

Instantly share code, notes, and snippets.

View hali241997's full-sized avatar

Hasnain Ali hali241997

  • GudangAda
  • Pakistan
View GitHub Profile
const [searchTerm, setSearchTerm] = useState('');
const [show, setShow] = useState(false);
function search(value) {
setSearchTerm(value);
if(value === '') {
setShow(false);
}
else {
@hali241997
hali241997 / eos-tx
Last active December 18, 2019 09:49
actions: [{
account: 'eosio',
name: 'newaccount',
authorization: [{
actor: account,
permission: 'active'
}],
data: {
creator: account,
name: 'mynewacc',