0.0.13 • Published 6 months ago

@renec-foundation/propeasy-sdk v0.0.13

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 months ago

propeasy-sdk

How to use

Get PropertyClient

import {
  PublicKey,
  Connection,
  Keypair,
  Commitment,
} from "@solana/web3.js";
import { AnchorProvider, Wallet, BN, Address } from "@project-serum/anchor";
import { Context, PropertyClient,
  PROPEASY_PROGRAM, PROP
} from "@renec-foundation/propeasy-sdk";


...
// yourKey = Keypair.fromSecretKey(Uint8Array.from([124, 149, 222, 31, 236, 142, 29, 95...]));

const commitment: Commitment = "confirmed";
const connection = new Connection(RPC_ENDPOINT_URL, { commitment });
const wallet = new Wallet(yourKey);
const provider = new AnchorProvider(connection, wallet, { commitment });

const ctx = Context.withProvider(provider, PROPEASY_PROGRAM);

const propertyMintAccount = new PublicKey('');

let propertyClient = await PropertyClient.getProperty(ctx, propertyMintAccount);

console.log("property", propertyClient)

const purchaseTx = await propertyClient.purchasePropertyToken(new BigNumber(10));
const purchaseTxSig = await purchaseTx.buildAndExecute();

propertyClient = await propertyClient.refresh();
const locker = await propertyClient.getLocker();

console.log("locker", locker);

const individualCommission = propertyClient.getCommissionAmount(new BigNumber(10))

Initialize platform

  • update .wallet/owner.js
yarn build:sdk
yarn cli initialize -n mainnet

Create new property

  • update .wallet/owner.js
  • update data/property.ts
yarn build:sdk
yarn cli createProperty -n mainnet
0.0.13

6 months ago

0.0.11

6 months ago

0.0.12

6 months ago

0.0.10

7 months ago

0.0.9

7 months ago

0.0.8

7 months ago

0.0.7

7 months ago

0.0.6

7 months ago

0.0.5

7 months ago

0.0.4

7 months ago

0.0.3

7 months ago

0.0.2

8 months ago

0.0.1

10 months ago