Skip to content

Commit

Permalink
Merge pull request #196 from tablelandnetwork/dtb/ethers-v6
Browse files Browse the repository at this point in the history
Ethers v6 & Polygon Amoy
  • Loading branch information
dtbuchholz authored May 8, 2024
2 parents 605a410 + 9f71f02 commit 96d1b2b
Show file tree
Hide file tree
Showing 154 changed files with 5,173 additions and 5,606 deletions.
15 changes: 10 additions & 5 deletions config/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,22 +244,27 @@ const studio = [
// Autogenerated SDK API docs
const apiSdk = [
...sidepageHeader("SDK API reference"),
"api/sdk/modules",
...section("Namespaces"),
"api/sdk/globals",
...section("Classes"),
{
type: "autogenerated",
dirName: "api/sdk/namespaces",
dirName: "api/sdk/classes",
},
...section("Classes"),
...section("Namespaces"),
{
type: "autogenerated",
dirName: "api/sdk/classes",
dirName: "api/sdk/namespaces",
},
...section("Interfaces"),
{
type: "autogenerated",
dirName: "api/sdk/interfaces",
},
...section("Type aliases"),
{
type: "autogenerated",
dirName: "api/sdk/type-aliases",
},
];

// SDK
Expand Down
1 change: 0 additions & 1 deletion docs/api/sdk/_category_.yml

This file was deleted.

142 changes: 63 additions & 79 deletions docs/api/sdk/classes/ApiError.md
Original file line number Diff line number Diff line change
@@ -1,219 +1,203 @@
---
id: "ApiError"
title: "Class: ApiError"
sidebar_label: "ApiError"
sidebar_position: 0
custom_edit_url: null
---
# Class: ApiError

## Hierarchy
## Extends

- `Error`

**`ApiError`**

## Constructors

### constructor
### new ApiError()

**new ApiError**(`response`): [`ApiError`](ApiError.md)
> **new ApiError**(`response`): [`ApiError`](ApiError.md)
#### Parameters

| Name | Type |
| :------ | :------ |
| `response` | `Omit`\<`ApiResponse`\<`any`\>, ``"ok"``\> |
**response**: `Omit`\<`ApiResponse`\<`any`\>, `"ok"`\>

#### Returns

[`ApiError`](ApiError.md)

#### Overrides

Error.constructor
`Error.constructor`

#### Defined in
#### Source

@tableland/sdk/src/validator/client/types.ts:164

## Properties

### cause
### cause?

`Optional` **cause**: `unknown`
> `optional` **cause**: `unknown`
#### Inherited from

Error.cause
`Error.cause`

#### Defined in
#### Source

typescript/lib/lib.es2022.error.d.ts:24

___
***

### data

`Readonly` **data**: `any`
> `readonly` **data**: `any`
#### Defined in
#### Source

@tableland/sdk/src/validator/client/types.ts:162

___
***

### headers

`Readonly` **headers**: `Headers`
> `readonly` **headers**: `Headers`
#### Defined in
#### Source

@tableland/sdk/src/validator/client/types.ts:158

___
***

### message

**message**: `string`
> **message**: `string`
#### Inherited from

Error.message
`Error.message`

#### Defined in
#### Source

typescript/lib/lib.es5.d.ts:1068

___
***

### name

**name**: `string`
> **name**: `string`
#### Inherited from

Error.name
`Error.name`

#### Defined in
#### Source

typescript/lib/lib.es5.d.ts:1067

___
***

### stack
### stack?

`Optional` **stack**: `string`
> `optional` **stack**: `string`
#### Inherited from

Error.stack
`Error.stack`

#### Defined in
#### Source

typescript/lib/lib.es5.d.ts:1069

___
***

### status

`Readonly` **status**: `number`
> `readonly` **status**: `number`
#### Defined in
#### Source

@tableland/sdk/src/validator/client/types.ts:160

___
***

### statusText

`Readonly` **statusText**: `string`
> `readonly` **statusText**: `string`
#### Defined in
#### Source

@tableland/sdk/src/validator/client/types.ts:161

___
***

### url

`Readonly` **url**: `string`
> `readonly` **url**: `string`
#### Defined in
#### Source

@tableland/sdk/src/validator/client/types.ts:159

___

### prepareStackTrace

`Static` `Optional` **prepareStackTrace**: (`err`: `Error`, `stackTraces`: `CallSite`[]) => `any`
***

#### Type declaration
### prepareStackTrace()?

(`err`, `stackTraces`): `any`
> `static` `optional` **prepareStackTrace**: (`err`, `stackTraces`) => `any`
Optional override for formatting stack traces

##### Parameters
#### See

| Name | Type |
| :------ | :------ |
| `err` | `Error` |
| `stackTraces` | `CallSite`[] |
https://v8.dev/docs/stack-trace-api#customizing-stack-traces

##### Returns
#### Parameters

`any`
**err**: `Error`

**`See`**
**stackTraces**: `CallSite`[]

https://v8.dev/docs/stack-trace-api#customizing-stack-traces
#### Returns

`any`

#### Inherited from

Error.prepareStackTrace
`Error.prepareStackTrace`

#### Defined in
#### Source

@types/node/globals.d.ts:28

___
***

### stackTraceLimit

`Static` **stackTraceLimit**: `number`
> `static` **stackTraceLimit**: `number`
#### Inherited from

Error.stackTraceLimit
`Error.stackTraceLimit`

#### Defined in
#### Source

@types/node/globals.d.ts:30

## Methods

### captureStackTrace
### captureStackTrace()

**captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
> `static` **captureStackTrace**(`targetObject`, `constructorOpt`?): `void`
Create .stack property on a target object

#### Parameters

| Name | Type |
| :------ | :------ |
| `targetObject` | `object` |
| `constructorOpt?` | `Function` |
**targetObject**: `object`

**constructorOpt?**: `Function`

#### Returns

`void`

#### Inherited from

Error.captureStackTrace
`Error.captureStackTrace`

#### Defined in
#### Source

@types/node/globals.d.ts:21
Loading

0 comments on commit 96d1b2b

Please sign in to comment.