Skip to content

Instantly share code, notes, and snippets.

@vikiival
vikiival / contract.ts
Created August 5, 2021 11:08
Smart contracts for NFT in Polkadot ecosystem
@contract
export class ERC721 {
storage: ERC721Storage;
constructor() {
this.storage = new ERC721Storage();
}
@constructor
default(name: string = "", symbol: string = ""): void {
@vikiival
vikiival / aframe.ts
Created November 16, 2021 15:02
Nuxt Aframe
import Vue from 'vue'
import 'aframe';
Vue.config.ignoredElements = [
'a-scene',
'a-assets',
'a-box',
'a-cylinder',
'a-text',
'a-sphere',
@vikiival
vikiival / wizard_log.md
Last active December 17, 2021 21:39
viki_the_wizard

Wizard Log 17.12.2021

subup

  • V0: implementation of polkadot-launch into the substrate
  • V1: define just repositories which should be executed and then ... :O

porticulis

Original idea by @yangwao

@vikiival
vikiival / deno.jsonc
Created November 6, 2023 11:09
deno fast format
{
"fmt": {
"singleQuote": true,
"semiColons": false,
"include": ["src/*.ts"]
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]