eosjs-json
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"warning": "This format will change: https://github.com/EOSIO/eos/issues/150", | ||
"warning_chain_json": "Format will change: https://github.com/EOSIO/eos/issues/150", | ||
@@ -46,8 +46,21 @@ "get_info": { | ||
"last_unstaking_time": "Time", | ||
"producer": "optional<producer_info>", | ||
"abi": "optional<Abi>" | ||
"producer": "Optional<producer_info>", | ||
"abi": "Optional<Abi>" | ||
} | ||
}, | ||
"get_table_rows_i64": { | ||
"get_code": { | ||
"brief": "Fetch smart contract code", | ||
"params": { | ||
"name": "Name" | ||
}, | ||
"results": { | ||
"name": "Name", | ||
"wast": "String", | ||
"code_hash": "FixedBytes32", | ||
"abi": "Optional<Abi>" | ||
} | ||
}, | ||
"get_table_rows": { | ||
"brief": "Fetch smart contract data from an account.", | ||
@@ -103,8 +116,8 @@ "params": { | ||
"get_types": { | ||
"brief": "Fetch account registered types", | ||
"get_required_keys": { | ||
"params": { | ||
"account_name": "String" | ||
"transaction": "Transaction", | ||
"available_keys": "Set[PublicKey]" | ||
}, | ||
"results": "String[]" | ||
"results": "Set[PublicKey]" | ||
}, | ||
@@ -128,10 +141,10 @@ | ||
"get_required_keys": { | ||
"push_transactions": { | ||
"brief": "Attempts to push transactions into the pending queue.", | ||
"params": { | ||
"transaction": "Transaction", | ||
"available_keys": "Set[PublicKey]" | ||
"signed_transaction": "SignedTransaction[]" | ||
}, | ||
"results": "Set[PublicKey]" | ||
"results": null | ||
} | ||
} |
{ | ||
"name": "eosjs-json", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Information about the EOS blockchain in the JSON file format.", | ||
@@ -23,3 +23,3 @@ "dependencies": {}, | ||
"author": "", | ||
"license": "ISC", | ||
"license": "MIT", | ||
"bugs": { | ||
@@ -26,0 +26,0 @@ "url": "https://github.com/EOSIO/eosjs-json/issues" |
@@ -74,3 +74,7 @@ { | ||
"maxTrxLifetime": "UInt32", | ||
"authDepthLimit": "UInt16" | ||
"authDepthLimit": "UInt16", | ||
"maxTrxRuntime": "UInt32", | ||
"inlineDepthLimit": "UInt16", | ||
"maxInlineMsgSize": "UInt32", | ||
"maxGenTrxSize": "UInt32" | ||
} | ||
@@ -77,0 +81,0 @@ }, |
34545
18
866