Service Bus
import { NotVault, ServiceBus } from '@notcentralised/notvault-sdk';Instructions
const vault = new NotVault();
const servicebus = new ServiceBus(vault);const key = BigInt(1);
const confidentialValue = BigInt(2);await servicebus.setValue(key, confidentialValue);const retrievedConfidentialValue : BigInt = await servicebus.getValue("... Wallet Address ...", key);Last updated