COOPENOMICS  v1
Кооперативная Экономика
table_marketplace_fee_config.hpp
См. документацию.
1#pragma once
2
3#include <eosio/eosio.hpp>
4#include <eosio/singleton.hpp>
5
6#include "../consts.hpp"
7
24struct [[eosio::table, eosio::contract(MARKETPLACE)]] mkt_config {
25 uint64_t membership_fee_percent = 0;
26};
27
28typedef eosio::singleton<"config"_n, mkt_config> mkt_config_singleton;
29
30// Отсечка персонального распределения per-КУ (branchsplits/setsplit) удалена
31// раундом 5 (решение владельца 2026-06-10): при финализации 100% взноса
32// уходит в общий кошелёк КУ (branch::accrue), распределение доверенным —
33// ручная команда председателя branch::distribute с произвольной суммой.
contract
Definition: eosio.msig_tests.cpp:977
Definition: eosio.msig.hpp:34
Конфигурация членского взноса «Стола заказов» (requirement b6 «Экономика КУ»).
Definition: table_marketplace_fee_config.hpp:24
eosio::singleton<"config"_n, mkt_config > mkt_config_singleton
Definition: table_marketplace_fee_config.hpp:28