COOPENOMICS  v1
Кооперативная Экономика
table_fund_coopwallet.hpp
См. документацию.
1#pragma once
2
3#include <eosio/asset.hpp>
4#include <eosio/eosio.hpp>
5
6#include "../consts.hpp"
7
9 eosio::asset available;
10 eosio::asset withdrawed;
11};
12
18struct [[eosio::table, eosio::contract(FUND)]] coopwallet {
19 uint64_t id = 0;
20
21 eosio::name coopname;
22
24
26
28
30
31 uint64_t primary_key() const { return id; }
32};
33
34typedef eosio::multi_index<"coopwallet"_n, coopwallet> coopwallet_index;
contract
Definition: eosio.msig_tests.cpp:977
Definition: eosio.msig.hpp:34
Definition: table_fund_coopwallet.hpp:18
simple_wallet circulating_account
Definition: table_fund_coopwallet.hpp:23
uint64_t primary_key() const
Definition: table_fund_coopwallet.hpp:31
simple_wallet accumulative_expense_account
Definition: table_fund_coopwallet.hpp:29
simple_wallet accumulative_account
Definition: table_fund_coopwallet.hpp:27
eosio::name coopname
Definition: table_fund_coopwallet.hpp:21
uint64_t id
Definition: table_fund_coopwallet.hpp:19
simple_wallet initial_account
Definition: table_fund_coopwallet.hpp:25
Definition: table_fund_coopwallet.hpp:8
eosio::asset available
Definition: table_fund_coopwallet.hpp:9
eosio::asset withdrawed
Definition: table_fund_coopwallet.hpp:10
eosio::multi_index<"coopwallet"_n, coopwallet > coopwallet_index
Definition: table_fund_coopwallet.hpp:34