-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement local execution of view methods (#1172)
- Loading branch information
Showing
14 changed files
with
936 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@near-js/accounts": patch | ||
--- | ||
|
||
Implement local execution of contract view methods |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import { BlockReference, ContractCodeView } from '@near-js/types'; | ||
import { printTxOutcomeLogs } from '@near-js/utils'; | ||
import { Account, FunctionCallOptions } from '../account'; | ||
import { Storage } from './storage'; | ||
import { Runtime } from './runtime'; | ||
import { ContractState } from './types'; | ||
|
||
interface ViewFunctionCallOptions extends FunctionCallOptions { | ||
blockQuery?: BlockReference | ||
} | ||
|
||
export class LocalViewExecution { | ||
private readonly account: Account; | ||
private readonly storage: Storage; | ||
|
||
constructor(account: Account) { | ||
this.account = account; | ||
this.storage = new Storage(); | ||
} | ||
|
||
private async fetchContractCode(contractId: string, blockQuery: BlockReference) { | ||
const result = await this.account.connection.provider.query<ContractCodeView>({ | ||
request_type: 'view_code', | ||
account_id: contractId, | ||
...blockQuery, | ||
}); | ||
|
||
return result.code_base64; | ||
} | ||
|
||
private async fetchContractState(blockQuery: BlockReference): Promise<ContractState> { | ||
return this.account.viewState('', blockQuery); | ||
} | ||
|
||
private async fetch(contractId: string, blockQuery: BlockReference) { | ||
const block = await this.account.connection.provider.block(blockQuery); | ||
const blockHash = block.header.hash; | ||
const blockHeight = block.header.height; | ||
const blockTimestamp = block.header.timestamp; | ||
|
||
const contractCode = await this.fetchContractCode(contractId, blockQuery); | ||
const contractState = await this.fetchContractState(blockQuery); | ||
|
||
return { | ||
blockHash, | ||
blockHeight, | ||
blockTimestamp, | ||
contractCode, | ||
contractState, | ||
}; | ||
} | ||
|
||
private async loadOrFetch(contractId: string, blockQuery: BlockReference) { | ||
const stored = this.storage.load(blockQuery); | ||
|
||
if (stored) { | ||
return stored; | ||
} | ||
|
||
const { blockHash, ...fetched } = await this.fetch(contractId, blockQuery); | ||
|
||
this.storage.save(blockHash, fetched); | ||
|
||
return fetched; | ||
} | ||
|
||
public async viewFunction({ contractId, methodName, args = {}, blockQuery = { finality: 'optimistic' }, ...ignored }: ViewFunctionCallOptions) { | ||
const methodArgs = JSON.stringify(args); | ||
|
||
const { contractCode, contractState, blockHeight, blockTimestamp } = await this.loadOrFetch( | ||
contractId, | ||
blockQuery | ||
); | ||
const runtime = new Runtime({ contractId, contractCode, contractState, blockHeight, blockTimestamp, methodArgs }); | ||
|
||
const { result, logs } = await runtime.execute(methodName); | ||
|
||
if (logs) { | ||
printTxOutcomeLogs({ contractId, logs }); | ||
} | ||
|
||
return JSON.parse(Buffer.from(result).toString()); | ||
} | ||
} |
Oops, something went wrong.