Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/contracts/eosio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,6 @@ export interface TableTypes {
}
export type RowType<T> = T extends keyof TableTypes ? TableTypes[T] : any
export type TableNames = keyof TableTypes
export interface ActionParams {}
export namespace ActionParams {
export namespace Type {
export interface permission_level {
Expand Down Expand Up @@ -1734,7 +1733,6 @@ export namespace ActionParams {
amount: AssetType
}
}
export const ActionParams: ActionParams = {} as ActionParams
export interface ActionNameParams {
activate: ActionParams.activate
bidname: ActionParams.bidname
Expand Down
15 changes: 14 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,17 @@ export * from './account'
export * from './permission'
export * from './resource'
export * from './kit'
export * as SystemContract from './contracts/eosio'
import {abi, abiBlob, Contract, TableMap, Types} from './contracts/eosio'

export const SystemContract = {
abi,
abiBlob,
Contract,
TableMap,
Types,
}

export {
type ActionNameParams as SystemContractActionNameParams,
type ActionNames as SystemContractActionNames,
} from './contracts/eosio'