1.1.4 β€’ Published 1 month ago

@bowogfc/bbpolymer v1.1.4

Weekly downloads
-
License
ISC
Repository
github
Last release
1 month ago

β›“οΈπŸ”—β›“οΈ 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.

GitHub template

πŸ“š Documentation

There's some basic information here in the README but a more comprehensive documentation can be found in the official Polymer documentation.

πŸ“‹ Prerequisites

The repo is compatible with both Hardhat and Foundry development environments.

  • Have git installed
  • Have node installed (v18+)
  • Have Foundry installed (Hardhat will be installed when running npm install)
  • Have just installed (recommended but not strictly necessary)

You'll need some API keys from third party's:

Some basic knowledge of all of these tools is also required, although the details are abstracted away for basic usage.

🧰 Install dependencies

To compile your contracts and start testing, make sure that you have all dependencies installed.

From the root directory run:

just install

to install the vIBC core smart contracts as a dependency.

Additionally Hardhat will be installed as a dev dependency with some useful plugins. Check package.json for an exhaustive list.

βš™οΈ Set up your environment variables

Convert the .env.example file into an .env file. This will ignore the file for future git commits as well as expose the environment variables. Add your private keys and update the other values if you want to customize (advanced usage feature).

cp .env.example .env

This will enable you to sign transactions with your private key(s). If not added, the scripts from the justfile will fail.

Obtaining testnet ETH

The account associated with your private key must have both Base Sepolia and Optimism Sepolia ETH. To obtain the testnet ETH visit:

πŸƒπŸ½πŸƒπŸ»β€β™€οΈ Quickstart

The project comes with a built-in dummy application called x-counter. You can find the contracts in the /contracts directory as XCounterUC.sol and XCounter.sol (the former when using the universal channel, the latter when creating a custom IBC channel).

Custom IBC channel

The default setup (.env, config.json) are preconfigured to try to send packets over a custom channel.

Run the following command to go through a full E2E sweep of the project:

# Usage: just do-it
just do-it

It does the following under the hood:

# Run the full E2E flow by setting the contracts, deploying them, creating a channel, and sending a packet
# Usage: just do-it
do-it:
    echo "Running the full E2E flow..."
    just set-contracts optimism XCounter && just set-contracts base XCounter
    just deploy optimism base false
    just create-channel
    just send-packet optimism false
    echo "You've done it!"

It makes sure you've got the correct contracts set, deploys new instances, creates a channel and sends a packet over the channel once created.

Note: by default the sim-client is used to improve latency. This is useful for iterative development and testing BUT also insecure as it involves no proofs. Make sure to move to the client with proofs by running another just command...

# Usage: just switch-client [universal=true]
just switch-client false

Check if the packet got through on the Polymer IBC explorer.

Universal channels

Soon...

πŸ’» Develop your custom application

The main work for you as a developer is to develop the contracts that make up your cross-chain logic.

You can use the contracts in the "/contracts/base" directory as base contracts for creating IBC enabled contracts that can either send packets over the universal channel or create their own channel to send packets over.

A complete walkthrough on how to develop these contracts is provided in the official Polymer documentation.

πŸ•ΉοΈ Interaction with the contracts

When the contracts are ready, you can go ahead and interact with the contracts through scripts. There is a Justfile to for the most common commands, with the underlying scripts in the /scripts folder.

There's three types of default scripts in the project:

  • _deploy.js and deploy-config.js allow you to deploy your application contract
  • _create-channel.js and create-channel-config.js creates a channel
  • send-packet.js sends packets over an existing custom channel, and send-universal-packet.js is specifically for sending packets over a universal channel

For every script you'll find a field in the configuration file!!

Note: These are the default scripts provided. They provide the most generic interactions with the contracts to deploy, create channels and send packets. For more complicated use cases you will want to customize the scripts to your use case. See advanced usage for more info.

Deploy

Before deploying, make sure to update the config.json with your contract type to deploy for each of the chain you wish to deploy to.

Do this by running:

# Usage: just set-contracts [chain] [contract_type]
just set-contracts optimism MyContract

to deploy MyContract artefact to the Optimism (Sepolia) chain.

Then run:

# Usage: just deploy [source] [destination] [universal]
just deploy optimism base true

for an application that will use a universal channel, or:

# or
just deploy optimism base false

for an application that uses custom channels.

The script will take the output of the deployment and update the config file with all the relevant information.

Before moving on, you'll want to check if the variables in your .env and config files line up with what is stored in the actual deployed contracts... especially when you're actively playing around with different configuration files and contracts.

To do a sanity check, run:

# Usage: just sanity-check [universal=true]
just sanity-check false

Pick false for custom channels and true (or leave empty) for universal channels.

Create a channel

If you're using universal channels, channel creation is not required. Your contract will send and receive packet data from the Universal channel handler contract which already has a universal channel to send packets over. You can directly proceed to sending (universal) packets in that case.

To create a custom channel, run:

just create-channel

This creates a channel between base and optimism. Note that the ORDER MATTERS; if you picked optimism as the source chain (first argument) above, by default it will create the channel from optimism and vice versa.

The script will take the output of the channel creation and update the config file with all the relevant information.

Check out the channel tab in the explorer to find out if the correct channel-id's related to your contracts were updated in the config.

Send packets

Finally Run:

# Usage: just send-packet [source] [universal]
just send-packet optimism true

to send a packet over a universal channel. You can pick either optimism or base to send the packet from.

Or run:

just send-packet optimism false

to send a packet over a custom channel. You can pick either optimism or base to send the packet from.

Verify, don't trust

Note: by default the sim-client is used to improve latency. This is useful for iterative development and testing BUT also insecure as it involves no proofs. Make sure to move to the client with proofs by running another just command...

# Usage: just switch-client [universal=true]
just switch-client false

This will use the op-stack client with proofs, making sure that the relayer is proving what is being submitted every step along the way, ensuring there's no trust assumption on the relayer.

🦾 Advanced usage

For advanced users, there's multiple custimizations to follow. These includes configuring the config.json manually and/or running the scripts without using just.

For example, the last action to send a packet on a universal channel could be executed with this command:

npx hardhat run scripts/send-universal-packet.js --network base

To send a universal packet from the contract specified in the config.sendUniversalPacket field in the config.

🀝 Contributing

We welcome and encourage contributions from our community! Here’s how you can contribute.

Take a look at the open issues. If there's an issue that has the help wanted label or good first issue, those are up for grabs. Assign yourself to the issue so people know you're working on it.

Alternatively you can open an issue for a new idea or piece of feedback.

When you want to contribute code, please follow these steps:

  1. Fork the Repository: Start by forking this repository.
  2. Apply the improvements: Want to optimize something or add support for additional developer tooling? Add your changes!
  3. Create a Pull Request: Once you're ready and have tested your added code, submit a PR to the repo and we'll review as soon as possible.

πŸ’‘ Questions or Suggestions?

Feel free to open an issue for questions, suggestions, or discussions related to this repository. For further discussion as well as a showcase of some community projects, check out the Polymer developer forum.

Thank you for being a part of our community!

abbrevabstract-levelacornacorn-walkaddressadm-zipaes-jsagent-baseaggregate-errorajvamdefineansi-alignansi-colorsansi-escapesansi-regexansi-stylesantlr4tsanymatchargargparsearray-backarray-unionarray-uniqasapassertion-errorastral-regexasyncasynckitat-least-nodeaxiosbalanced-matchbase-xbase64-jsbbpolymerbech32bigint-crypto-utilsbinary-extensionsblakejsbn.jsboxenbrace-expansionbracesbrorandbrowser-levelbrowser-stdoutbrowserify-aesbs58bs58checkbufferbuffer-frombuffer-xorbytescall-bindcamelcasecasecaselesscateringcborchaichai-as-promisedchalkcharenccheck-errorchokidarci-infocipher-baseclassic-levelclean-stackcli-boxescli-table3cliuicolor-convertcolor-namecolorscombined-streamcommand-existscommand-line-argscommand-line-usagecommanderconcat-mapconcat-streamcookiecore-util-iscrc-32create-hashcreate-hmaccreate-requirecryptdeathdebugdecamelizedeep-eqldeep-extenddeep-isdefine-data-propertydelayed-streamdepddetect-portdiffdifflibdir-globdotenvellipticemoji-regexenquirerenv-pathses-errorsescaladeescape-string-regexpescodegenesprimaestraverseesutilseth-gas-reporterethereum-bloom-filtersethereum-cryptographyethereumjs-abiethereumjs-utilethersethjs-unitethjs-utilevp_bytestokeyfast-deep-equalfast-globfast-levenshteinfastqfill-rangefind-replacefind-upflatfollow-redirectsform-datafp-tsfs-extrafs-readdir-recursivefs.realpathfunction-bindfunctional-red-black-treeget-caller-fileget-func-nameget-intrinsicget-portghost-testrpcglobglob-parentglobal-modulesglobal-prefixglobbygopdgraceful-fshandlebarshardhathardhat-gas-reporterhardhat-verifyhas-flaghas-property-descriptorshas-protohas-symbolshash-basehash.jshasownheheaphmac-drbghttp-basichttp-errorshttp-response-objecthttps-proxy-agenticonv-liteieee754ignoreimmutableindent-stringinflightinheritsiniinterpretio-tsis-binary-pathis-bufferis-extglobis-fullwidth-code-pointis-globis-hex-prefixedis-numberis-plain-objis-unicode-supportedisarrayisexejs-sdsljs-sha3js-yamljson-schema-traversejsonfilejsonschemakeccakkind-ofklawlevellevel-supportslevel-transcoderlevnlocate-pathlodashlodash.camelcaselodash.clonedeeplodash.isequallodash.truncatelog-symbolsloupelru_maplru-cachemake-errormarkdown-tablemcl-wasmmd5.jsmemory-levelmemorystreammerge2micro-ftchmicromatchmime-dbmime-typesminimalistic-assertminimalistic-crypto-utilsminimatchminimistmkdirpmnemonistmodule-errormsnanoidnapi-macrosneo-asyncnode-addon-apinode-emojinode-gyp-buildnofilternoptnormalize-pathnumber-to-bnobject-assignobject-inspectobliteratoronceoptionatorordinalos-tmpdirp-limitp-locatep-mapp-tryparse-cache-controlpath-existspath-is-absolutepath-parsepath-typepathvalpbkdf2picomatchpifyprelude-lsprettierprocess-nextick-argspromiseproxy-from-envpunycodeqsqueue-microtaskrandombytesraw-bodyreadable-streamreaddirprechoirrecursive-readdirreduce-flattenreq-cwdreq-fromrequire-directoryrequire-from-stringresolveresolve-fromreusifyrimrafripemd160rlprun-parallelrun-parallel-limitrustbn.jssafe-buffersafer-buffersc-istanbulscrypt-jssecp256k1semverserialize-javascriptset-function-lengthsetimmediatesetprototypeofsha.jssha1shelljsside-channelslashslice-ansisolcsolidity-coveragesource-mapsource-map-supportsprintf-jsstacktrace-parserstatusesstring_decoderstring-formatstring-widthstrip-ansistrip-hex-prefixstrip-json-commentssupports-colorsync-requestsync-rpctabletable-layoutthen-requesttmpto-regex-rangetoidentifierts-command-line-argsts-essentialsts-nodetslibtsorttweetnacltweetnacl-utiltype-checktype-detecttype-festtypechaintypedarraytypescripttypicaluglify-jsundiciundici-typesuniversalifyunpipeuri-jsutf8util-deprecateuuidv8-compile-cache-libweb3-utilswhichwidest-lineword-wrapwordwrapwordwrapjsworkerpoolwrap-ansiwrappywsy18nyallistyargsyargs-parseryargs-unparserynyocto-queue
1.1.4

1 month ago