Skip to content

Instantly share code, notes, and snippets.

@AnteaterKit
Last active July 5, 2022 06:27
Show Gist options
  • Save AnteaterKit/461fc908e1edb3fa4dd30f6285a6c2b5 to your computer and use it in GitHub Desktop.
Save AnteaterKit/461fc908e1edb3fa4dd30f6285a6c2b5 to your computer and use it in GitHub Desktop.
PersistentUnorderedMap
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