🟨Polymer
Polymer Dev Role in Discord
⛓️🔗⛓️ Template for IBC enabled Solidity contracts
This repo provides a starter project to build IBC enabled Solidity contracts that connect rollups to one another Polymer Hub, through the vIBC core contracts.
The repository is a GitHub template repository so you can click "Use this template" to create your own project repository without having the entire commit history of the template.
recommended run in gitpod

Install update and upgrade
sudo apt-get update
sudo apt-get upgrade
Install npm
sudo apt install npm
Install Git and NodeJs
sudo apt install git
sudo apt install nodejs
Install Foundry
curl -L https://foundry.paradigm.xyz | bash
Run Foundry
foundryup
Install Just
npm install -g just-install
Get API keys
Convert the
.env.example
file into an.env
file
cp .env.example .env
Edit your .
env
file
```shellscript
# Make sure to rename this file to .env before adding your private keys!!!
PRIVATE_KEY_1='' // private key metamask
# Add more if your project requires more private keys
# API keys for developer tooling and infra
OP_ALCHEMY_API_KEY='' //API key OP Archemy
BASE_ALCHEMY_API_KEY='' //API key Base Archemy
OP_BLOCKSCOUT_API_KEY='' //API key OP BlockScout
BASE_BLOCKSCOUT_API_KEY='' //API key Base BLockScout
TENDERLY_TOKEN=''
```
Get faucet your address
Start Just
just do-it
If you're success send proof in discord

Check if the packet got through on the Polymer IBC explorer

Last updated