testweave-sdk
Version:
This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.
60 lines (47 loc) • 1.68 kB
JavaScript
export function handle (state, action) {
const balances = state.balances
const input = action.input
const caller = action.caller
if (input.function === 'transfer') {
const target = input.target
const qty = input.qty
if (!Number.isInteger(qty)) {
throw new ContractError('Invalid value for "qty". Must be an integer')
}
if (!target) {
throw new ContractError('No target specified')
}
if (qty <= 0 || caller === target) {
throw new ContractError('Invalid token transfer')
}
if (balances[caller] < qty) {
throw new ContractError(`Caller balance not high enough to send ${qty} token(s)!`)
}
// create the balances for the target if it not exists
if (!balances[target]) {
balances[target] = 0;
}
// Lower the token balance of the caller
balances[caller] -= qty
if (target in balances) {
// Wallet already exists in state, add new tokens
balances[target] += qty
} else {
// Wallet is new, set starting balance
balances[target] = qty
}
return { state }
}
if (input.function === 'balance') {
const target = input.target
const ticker = state.ticker
if (typeof target !== 'string') {
throw new ContractError('Must specificy target to get balance for')
}
if (typeof balances[target] !== 'number') {
throw new ContractError('Cannnot get balance, target does not exist')
}
return { result: { target, ticker, balance: balances[target] } }
}
throw new ContractError(`No function supplied or function not recognised: "${input.function}"`)
}