reusable code blocks for EXM contracts
Roton-maxon is a developer tooling API for EXM developers that's built on top of the deterministicFetch
EXM feature. molecule.sh
is composed of multiple reusable EXM components/codes to facilitate writing EXM functions.
git pull https://github.com/quantum-one-dlt/roton-maxon.git
touch .env
npm install && npm run molecules
Note: copy the parameters from the .env.example
and fill the values with your API tokens
CHAT_API_TOKEN=...
OPENAI_API_KEY=...
OPENAI_ORGANIZATION=...
molecules/
├── ar/
│ └── tx-gql ~> atom
└── evm/
├── └── signer
└── sol/ ~> molecule
├── └── auth
└── zil/
├── └── zil-auth
├── stx/
│ └── stx-auth
└── substrate/
├── └── substrate-auth
└── trx/
├── └── trx-auth
└── icp/
├── └── icp-auth
└── ton/
├── └── ton-auth/
└── massa/
├── └── massa-auth
└── fuel/
├── └── fuel-auth
└── tez/
├── └── tez-auth
└── aptos/
└── └── aptos-auth/
└── nostr/
└── nostr-auth
└── exm/
└── └── exm-bundlr
└── near/
└── └── n-view-state/
└── ever/
├── └── tx
└── redstone/
└── └── price
└── ark/
├── ├── resolve
├── └── state
│ └── soark/domain
└── ai/
└── └── chatgpt
└── └── gpt3
molecule | endpoint | atoms | stability |
---|---|---|---|
Arweave (ar ) |
ar.molecule.sh |
tx-gql ota |
🟩 |
EVM (evm ) |
evm.molecule.sh |
signer |
🟩 |
Solana (sol ) |
sol.molecule.sh |
auth |
🟩 |
Zilliqa (zil ) |
zil.molecule.sh |
zil-auth |
🟩 |
Stacks (stx ) |
stx.molecule.sh |
stx-auth |
🟩 |
Substrate.io (substrate ) |
substrate.molecule.sh |
substrate-auth |
🟩 |
TRON (trx ) |
trx.molecule.sh |
trx-auth |
🟩 |
Internet Protocol (ICP ) |
icp.molecule.sh |
icp-auth |
🟩 |
TON (ton ) |
ton.molecule.sh |
ton-auth |
🟩 |
Massa (massa ) |
massa.molecule.sh |
massa-auth |
🟩 |
Fuel Network (fuel ) |
fuel.molecule.sh |
fuel-auth |
🟩 |
Tezos (tez |
tez.molecule.sh |
tez-auth |
🟩 |
Aptos (aptos |
aptos.molecule.sh |
aptos-auth |
🟩 |
Nostr (nostr |
nostr.molecule.sh |
nostr-auth |
🟩 |
EXM (exm |
exm.molecule.sh |
exm-bundlr |
🟩 |
NEAR (near ) |
near.molecule.sh |
n-view-state |
🟩 |
Everpay (ever ) |
ever.molecule.sh |
tx |
🟩 |
Redstone (redstone ) |
redstone.molecule.sh |
price |
🟩 |
Ark Protocol (ark ) |
ark.molecule.sh |
state resolve soark/domain |
🟩/🟨 |
Randomization (rand ) |
rand.molecule.sh |
generate |
🟩/🟨 |
AI (ai ) |
ai.molecule.sh |
gpt3 |
🟩/🟨 |
{molecule-name}.molecule.sh/{atom-name}/{argument1}/{argument2}
The following EXM contracts integrate molecule.sh atoms to achieve certain functionalities:
-
EXM with EVM : allows EXM contracts to be fully compatible with
action.caller
as EVM EOA. example -
Fetch Arweave TX metadata: fetch L1 or bundled Arweave TX object. example
-
Convert an Arweave public key to Arweave address. example
-
Lucky draw by randomization powered by random.org - example
-
Solana authentication: Simple name registry contract. example
-
Zilliqa authentication: Simple name registry contract. example
-
Stacks authentication: Simple name registry contract. example
-
Substrate.io authentication: Simple name registry contract. example
-
TRON authentication: Simple name registry contract. example
-
ICP authentication: Simple name registry contract. example
-
TON authentication: Simple name registry contract. example
-
Massa authentication: Simple name registry contract. example
-
Fuel authentication: Simple name registry contract. example
-
Tezos authentication: Simple name registry contract. example
-
Aptos authentication: Simple name registry contract. example
-
Redstone price oracle. example
-
Decentralized Public Square using
evm-auth
&exm-bundlr
atoms. example -
Decentralized Public Square using
nostr-auth
&exm-bundlr
atoms. example -
Getting Ark Protocol identity object. example
-
GPT3 integration in a smart contract. example
This project is licensed under the MIT License