Skip to content

Commit

Permalink
chore(gha): cleanup env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbeckers committed Jun 11, 2024
1 parent 8a3e421 commit 001e7d0
Show file tree
Hide file tree
Showing 31 changed files with 441 additions and 217 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,13 @@ env:
NEXT_PUBLIC_DEFAULT_CHAIN_ID: ${{ vars.NEXT_PUBLIC_DEFAULT_CHAIN_ID }}
NEXT_PUBLIC_CONTRACT_ADDRESS: ${{ vars.NEXT_PUBLIC_CONTRACT_ADDRESS }}
NEXT_PUBLIC_GRAPH_URL: ${{ vars.NEXT_PUBLIC_GRAPH_URL }}
NFT_STORAGE_TOKEN: ${{ secrets.NEXT_PUBLIC_NFT_STORAGE_TOKEN }}
WEB3_STORAGE_TOKEN: ${{ secrets.NEXT_PUBLIC_NFT_STORAGE_TOKEN }}
NEXT_PUBLIC_NFT_STORAGE_TOKEN: ${{ secrets.NEXT_PUBLIC_NFT_STORAGE_TOKEN }}
NEXT_PUBLIC_WEB3_STORAGE_TOKEN: ${{ secrets.NEXT_PUBLIC_NFT_STORAGE_TOKEN }}
NEXT_PUBLIC_SUPABASE_URL: ${{ vars.NEXT_PUBLIC_SUPABASE_URL }}
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
NEXT_PUBLIC_SUPABASE_TABLE: ${{ vars.NEXT_PUBLIC_SUPABASE_TABLE }}
NEXT_PUBLIC_WALLETCONNECT_ID: ${{ secrets.NEXT_PUBLIC_WALLETCONNECT_ID }}
INFURA_API_KEY: ${{ vars.INFURA_API_KEY }}
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
ALCHEMY_API_KEY: ${{ secrets.ALCHEMY_API_KEY }}
DOCKER_PLATFORM: "amd64"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,14 @@ error OperatorNotApprovedByUser()

It is returned if the operator to revoke has not been previously approved by the user.

### OrderInvalid

```solidity
error OrderInvalid()
```

It is returned if the order is permanently invalid. There may be an issue with the order formatting.

### RenouncementNotInProgress

```solidity
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# IHypercert1155Token

## Methods

### isApprovedForAll

```solidity
function isApprovedForAll(address account, address operator) external view returns (bool)
```

#### Parameters

| Name | Type | Description |
| -------- | ------- | ----------- |
| account | address | undefined |
| operator | address | undefined |

#### Returns

| Name | Type | Description |
| ---- | ---- | ----------- |
| \_0 | bool | undefined |

### ownerOf

```solidity
function ownerOf(uint256 tokenId) external view returns (address)
```

#### Parameters

| Name | Type | Description |
| ------- | ------- | ----------- |
| tokenId | uint256 | undefined |

#### Returns

| Name | Type | Description |
| ---- | ------- | ----------- |
| \_0 | address | undefined |

### splitFraction

```solidity
function splitFraction(address to, uint256 tokenID, uint256[] _values) external nonpayable
```

#### Parameters

| Name | Type | Description |
| -------- | --------- | ----------- |
| to | address | undefined |
| tokenID | uint256 | undefined |
| \_values | uint256[] | undefined |

### unitsOf

```solidity
function unitsOf(uint256 tokenId) external view returns (uint256)
```

#### Parameters

| Name | Type | Description |
| ------- | ------- | ----------- |
| tokenId | uint256 | undefined |

#### Returns

| Name | Type | Description |
| ---- | ------- | ----------- |
| \_0 | uint256 | undefined |
4 changes: 2 additions & 2 deletions docs/docs/developer/api/sdk/classes/ClientError.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Error.constructor

#### Defined in

[sdk/src/types/errors.ts:27](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L27)
[sdk/src/types/errors.ts:27](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L27)

## Properties

Expand Down Expand Up @@ -105,7 +105,7 @@ Additional error payload.

#### Defined in

[sdk/src/types/errors.ts:20](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L20)
[sdk/src/types/errors.ts:20](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L20)

---

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/developer/api/sdk/classes/ConfigurationError.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Error.constructor

#### Defined in

[sdk/src/types/errors.ts:188](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L188)
[sdk/src/types/errors.ts:188](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L188)

## Properties

Expand Down Expand Up @@ -103,7 +103,7 @@ Additional error payload.

#### Defined in

[sdk/src/types/errors.ts:187](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L187)
[sdk/src/types/errors.ts:187](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L187)

---

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/developer/api/sdk/classes/ContractError.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Error.constructor

#### Defined in

[sdk/src/types/errors.ts:43](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L43)
[sdk/src/types/errors.ts:43](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L43)

## Properties

Expand Down Expand Up @@ -104,7 +104,7 @@ Additional error payload.

#### Defined in

[sdk/src/types/errors.ts:41](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L41)
[sdk/src/types/errors.ts:41](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L41)

---

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/developer/api/sdk/classes/FetchError.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Error.constructor

#### Defined in

[sdk/src/types/errors.ts:65](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L65)
[sdk/src/types/errors.ts:65](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L65)

## Properties

Expand Down Expand Up @@ -105,7 +105,7 @@ Additional error payload.

#### Defined in

[sdk/src/types/errors.ts:58](https://github.com/hypercerts-org/hypercerts/blob/ffe5811/sdk/src/types/errors.ts#L58)
[sdk/src/types/errors.ts:58](https://github.com/hypercerts-org/hypercerts/blob/473cc51/sdk/src/types/errors.ts#L58)

---

Expand Down
Loading

0 comments on commit 001e7d0

Please sign in to comment.