Skip to content

Instantly share code, notes, and snippets.

View RaekwonIII's full-sized avatar
🤓
Learning Blockchain and TypeScript

Massimo Luraschi RaekwonIII

🤓
Learning Blockchain and TypeScript
View GitHub Profile
@RaekwonIII
RaekwonIII / gromlins-abi.json
Created September 9, 2022 10:19
The ABI of the smart contract managing Gromlins collection on Raresama
[
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
import pytest
from vowellator import vowellate
@pytest.mark.parametrize("test_input,expected", [
("toller edwards aldrich", "aldrich edwards toller"),
("toller edwards aldrich alan", "aldrich alan edwards toller"), # alan after aldrich because of original order
("toller tollar edwards aldrich alan", "aldrich alan edwards toller tollar"), # same with tollar/toller
('', '')
])