Last active
July 5, 2022 06:27
-
-
Save AnteaterKit/461fc908e1edb3fa4dd30f6285a6c2b5 to your computer and use it in GitHub Desktop.
PersistentUnorderedMap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { PersistentUnorderedMap } from "near-sdk-as"; | |
// Создадим объект для хранения | |
export const products = new PersistentUnorderedMap<string, string>("PRODUCTS"); | |
// Реализуем функцию создания новых товаров | |
export function setProduct(id: string, productName: string): void { products.set(id, productName); } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment