#cosmwasm #cosmos #blockchain

pfc-dust-collector-kujira

Common helpers for other contracts to use pfc-fee-split

2 releases (1 stable)

1.4.0 Feb 23, 2024
0.1.0 Oct 27, 2023

#129 in #cosmos

28 downloads per month

Apache-2.0

9KB
218 lines

WARNING

  • v0.2.9 has been audited and remediations have been applied (in 0.2.10 tag). Please pay careful attention to which contracts were audited, as 'dust-collector' were not, and are still considered unstable.

  • v0.2.1 has been audited

you should still exercise caution, and do your own research. no warranty is given or implied

  • astroport reward contracts are not current and deprecated.

PFC-Fee-Splitter protocol contracts

Components

how do/can they interact ?

native denoms comes into the system via 'fee-splitter' contract. the funds get split via the allocation table and either TRANSFERed to a wallet, or SEND to a smart contract, in this case, the 'vault' contract.

the vault accumulates the denoms, and allows people who hold the governance token (in astroport's case the LP token of the pair) to claim their portion when they choose.

the person needs to deposit their governance token in to start accumulating rewards.

the astroport-generator sits between the end-user and the vault itself, so the vault only sees a single address (the astroport smart contract) as the holder of it's LP tokens. it forwards the 'claim' function from astroport, and send rewards (in total for the smart contract). Astrport then determines how much of that sends to the individual. (how is out of scope)

Development

Environment Setup

  • Rust v1.56.1+
  • wasm32-unknown-unknown target
  • Docker
  1. Install rustup via https://rustup.rs/

  2. Run the following:

rustup default stable
rustup target add wasm32-unknown-unknown
  1. Make sure Docker is installed

Unit / Integration Tests

Each contract contains Rust unit and integration tests embedded within the contract source directories. You can run:

cargo unit-test
cargo integration-test

Compiling

After making sure tests pass, you can compile each contract with the following:

RUSTFLAGS='-C link-arg=-s' cargo wasm
cp ../../target/wasm32-unknown-unknown/release/cw1_subkeys.wasm .
ls -l cw1_subkeys.wasm
sha256sum cw1_subkeys.wasm

Production

For production builds, run the following:

docker run --rm -v "$(pwd)":/code \
  --mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
  --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
  cosmwasm/workspace-optimizer:0.10.4

This performs several optimizations which can significantly reduce the final size of the contract binaries, which will be available inside the artifacts/ directory.

License

ASL 2.0 - see LICENSE

PFC

If you think this was useful, feel free to delegate to the PFC validator. It will help defray the costs.

PFC - As Terra is all about the Perpetual Fee Chain right... feel free to drop me a line

Dependencies

~4–5.5MB
~123K SLoC