diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2017-12-02 03:29:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-02 03:29:27 +0800 |
commit | c291419141b06814c3e6d662998b7eaa6d554528 (patch) | |
tree | 4d85215ecfa9f627c12ca2dd14dc4e4c8ef3f22d /packages/contracts/util/rpc.ts | |
parent | c57190dead41846809effb8823bd4e486ca72512 (diff) | |
parent | 290a96d41f62b38a6d4b332fc716088caf666381 (diff) | |
download | dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.gz dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.bz2 dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.lz dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.xz dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.zst dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.zip |
Merge pull request #247 from 0xProject/feature/addContractsRepo
Add contracts repo
Diffstat (limited to 'packages/contracts/util/rpc.ts')
-rw-r--r-- | packages/contracts/util/rpc.ts | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/contracts/util/rpc.ts b/packages/contracts/util/rpc.ts new file mode 100644 index 000000000..023602bd6 --- /dev/null +++ b/packages/contracts/util/rpc.ts @@ -0,0 +1,43 @@ +import 'isomorphic-fetch'; + +import * as truffleConf from '../truffle.js'; + +export class RPC { + private host: string; + private port: number; + private id: number; + constructor() { + this.host = truffleConf.networks.development.host; + this.port = truffleConf.networks.development.port; + this.id = 0; + } + public async increaseTimeAsync(time: number) { + const method = 'evm_increaseTime'; + const params = [time]; + const payload = this.toPayload(method, params); + return this.sendAsync(payload); + } + public async mineBlockAsync() { + const method = 'evm_mine'; + const payload = this.toPayload(method); + return this.sendAsync(payload); + } + private toPayload(method: string, params: any[] = []) { + const payload = JSON.stringify({ + id: this.id, + method, + params, + }); + this.id++; + return payload; + } + private async sendAsync(payload: string): Promise<any> { + const opts = { + method: 'POST', + body: payload, + }; + const response = await fetch(`http://${this.host}:${this.port}`, opts); + const responsePayload = await response.json(); + return responsePayload; + } +} |