Overview
This guide provides instructions which show you how to create an action which requires the user to pay for the resources needed to store data in a Key-Value Map
(kv map
).
Make sure you have the following prerequisites in place:
- An EOSIO development environment, for details consult the Get Started Guide
- A smart contract named
smrtcontract
- A user defined type,
struct
orclass
, which defines the data stored in the map, namedperson
- A
kv map
object, namemy_map
, which stores objects of typeperson
, with unique keys of typeint
.
Refer to the following reference implementation for your starting point:
smartcontract.hpp file
struct person {
eosio::name account_name;
std::string first_name;
std::string last_name;
};
class [[eosio::contract]] smartcontract : public eosio::contract {
using my_map_t = eosio::kv::map<"kvmap"_n, int, person>;
public:
using contract::contract;
smartcontract(eosio::name receiver, eosio::name code, eosio::datastream<const char*> ds)
: contract(receiver, code, ds) {}
private:
my_map_t my_map{};
};
Procedure
Complete the following steps to create an action which requires the person
's account, which is stored in the map, to pay for the resources needed to store the person
object in the my_map
object.
- Create a new action in your contract, named
upsert
, which takes as input parameters the personid
, anaccount_name
, afirst_name
and alast_name
. - Create an instance of the
person
class, namedperson_upsert
, based on the input parameters:account_name
,first_name
andlast_name
. - Use the
[]
operator defined for thekv::map
type. Pass as the input parameter for the[]
operator anstd::pair<int, person>
instance with its first parameter the uniqueid
and the second parameter the account which is paying for the resourcesaccount_name
.
Refer to the following reference implementation to insert a new person
object, and then update it, in the kv map
:
smartcontract.hpp file
struct person {
eosio::name account_name;
std::string first_name;
std::string last_name;
};
class [[eosio::contract]] smartcontract : public eosio::contract {
using my_map_t = eosio::kv::map<"kvmap"_n, int, person>;
public:
using contract::contract;
smartcontract(eosio::name receiver, eosio::name code, eosio::datastream<const char*> ds)
: contract(receiver, code, ds) {}
// inserts a person if not exists, or updates it if already exists.
// the payer is the account_name, specified as input parameter.
[[eosio::action]]
void upsert(int id,
eosio::name account_name,
std::string first_name,
std::string last_name);
private:
my_map_t my_map{};
};
smartcontract.cpp file
// inserts if not exists, or updates if already exists, a person
[[eosio::action]]
void smartcontract::upsert(
int id,
eosio::name account_name,
std::string first_name,
std::string last_name) {
// create the person object which will be stored in kv::map
const person& person_upsert = person{
account_name = account_name,
first_name = first_name,
last_name = last_name};
// upsert into kv::map and set the payer to be the account_name
my_map[std::pair<int, eosio::name>(id, account_name)] = person_upsert;
}
Summary
In conclusion, the above instructions show how to require the user to pay for the resources needed to store data in a Key-Value Map
(kv map
).