Skip to content

Commit

Permalink
Merge pull request #1037 from ourai/task7
Browse files Browse the repository at this point in the history
task7: ourai
  • Loading branch information
xiangnuans authored Jul 5, 2024
2 parents ec57db4 + 0215adb commit 969cbc5
Show file tree
Hide file tree
Showing 18 changed files with 10,776 additions and 0 deletions.
22 changes: 22 additions & 0 deletions members/ourai/task7/asconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"targets": {
"debug": {
"outFile": "build/debug.wasm",
"textFile": "build/debug.wat",
"sourceMap": true,
"debug": true
},
"release": {
"outFile": "build/release.wasm",
"textFile": "build/release.wat",
"sourceMap": true,
"optimizeLevel": 3,
"shrinkLevel": 0,
"converge": false,
"noAssert": false
}
},
"options": {
"bindings": "esm"
}
}
75 changes: 75 additions & 0 deletions members/ourai/task7/aspect/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
import {
allocate,
entryPoint,
execute,
IPreContractCallJP,
PreContractCallInput,
sys,
uint8ArrayToHex,
UintData,
} from "@artela/aspect-libs";
import {Protobuf} from "as-proto/assembly";

/**
*/
class Aspect implements IPreContractCallJP {
/**
*
* @param input
*/
preContractCall(input: PreContractCallInput): void {
// read the throttle config from the properties and decode
const interval = sys.aspect.property.get<u64>('interval');
const limit = sys.aspect.property.get<u64>('limit');

// get the contract address, from address and build the storage prefix
const contractAddress = uint8ArrayToHex(input.call!.to);
const from = uint8ArrayToHex(input.call!.from);
const storagePrefix = `${contractAddress}:${from}`;

// load the current block timestamp
const blockTimeBytes = sys.hostApi.runtimeContext.get('block.header.timestamp');
const blockTime = Protobuf.decode<UintData>(blockTimeBytes, UintData.decode).data;

// load last execution timestamp
const lastExecState = sys.aspect.mutableState.get<u64>(`${storagePrefix}lastExecAt`);
const lastExec = lastExecState.unwrap();

// check if the throttle interval has passed, revert if not
if (lastExec > 0 && (blockTime - lastExec) < interval) {
sys.revert('throttled');
}

// check if the throttle limit has been reached, revert if so
const execTimeState = sys.aspect.mutableState.get<u64>(`${storagePrefix}execTimes`);
const execTimes = execTimeState.unwrap();
if (limit && execTimes >= limit) {
sys.revert('execution time exceeded');
}

// update the throttle state
lastExecState.set(blockTime);
execTimeState.set(execTimes + 1);
}

/**
* isOwner is the governance account implemented by the Aspect, when any of the governance operation
* (including upgrade, config, destroy) is made, isOwner method will be invoked to check
* against the initiator's account to make sure it has the permission.
*
* @param sender address of the transaction
* @return true if check success, false if check fail
*/
isOwner(sender: Uint8Array): bool {
return false;
}
}

// 2.register aspect Instance
const aspect = new Aspect()
entryPoint.setAspect(aspect)

// 3.must export it
export { execute, allocate }

6 changes: 6 additions & 0 deletions members/ourai/task7/aspect/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "assemblyscript/std/assembly.json",
"include": [
"./**/*.ts"
]
}
29 changes: 29 additions & 0 deletions members/ourai/task7/contracts/counter.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

contract Counter {
uint256 _count;
address private deployer;

constructor() {
deployer = msg.sender;
_count = 0;
}

function isOwner(address user) external view returns (bool result) {
if (user == deployer) {
return true;
} else {
return false;
}
}

function increment() public {
_count = _count + 1;
}

function count() public view returns (uint256) {
return _count;
}
}
Loading

0 comments on commit 969cbc5

Please sign in to comment.