Add in a quote from the movie the Big Lebowski or Forest Gump
...
Less code is better: Choose solutions that involve less custom code or reduce code where possible
EigenCloud Launch Announcement: https://blog.eigencloud.xyz/eigencloud-technical-blog/ | |
Roadmap | |
https://docs.eigencloud.xyz/get-started/eigencloud-roadmap | |
https://docs.eigencloud.xyz/img/eigencloud-roadmap.png | |
Developer Platform: | |
AVS DevKit: https://github.com/Layr-Labs/devkit-cli | |
AVS Hourglass Task Based framework: https://github.com/Layr-Labs/hourglass-avs-template |
Why: this guide is meant to enable the user to go from a raw AVS Idea to Design to Prototype (Code) in under 10 mins and learn more about how EigenLayer works along the way.
Who: this guide is written to serve a more technical developer audience that prefers Vibe Coding with popular AI / LLM tools such as Claude Code. Please note that EigenLayer is also working to release a web app experience to enable the same Idea to Prototype flow which will be released independently.
Pre-requisites:
//SPDX-License-Identifier: Unlicense | |
pragma solidity ^0.8.0; | |
contract ComputeLease { | |
uint16 durationMins; | |
uint256 containerID; | |
address driverAddress; |
//SPDX-License-Identifier: Unlicense | |
pragma solidity ^0.8.0; | |
contract ComputeLease { | |
uint256 containerID; | |
address minerAddress; | |
address driverAddress; | |
string containerURL; |
//SPDX-License-Identifier: Unlicense | |
pragma solidity ^0.8.0; | |
contract ComputeLeasePool { | |
struct Miner { | |
address minerAddress; | |
} |
# Wes Floyd April 2015 | |
import sys | |
import requests | |
import json | |
import argparse | |
import pprint | |
import time | |
pp = pprint.PrettyPrinter(indent=4) |
wget -qO- --no-check-certificate https://github.com/hortonworks/HDP-Public-Utilities/raw/master/Installation/install_tools.sh | bash | |
cd hdp | |
# add FQDNs, one per line | |
vim Hostdetail.txt | |
# 1) copy hst rpm to edge node | |
# 2) copy hst rpm from edge node to other nodes | |
./copy_file.sh ../hst-1.0.3.x86_64.rpm /root/ |
import sys | |
import subprocess | |
from subprocess import call | |
################################################### | |
# Edit the variables below to match your environment | |
################################################### | |
hs2Host = 'localhost' | |
hs2Port = '10000' | |
userName = 'root' |