Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: remove creator #35

Merged
merged 1 commit into from
Apr 16, 2024
Merged
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
4 changes: 2 additions & 2 deletions _packages/initia-registry/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions _packages/initia-registry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@initia/initia-registry",
"version": "0.1.2",
"version": "0.1.3",
"description": "Initia chain registry",
"main": "main/index.js",
"module": "esm/index.js",
Expand Down Expand Up @@ -40,6 +40,6 @@
"rimraf": "^5.0.5"
},
"dependencies": {
"@initia/initia-registry-types": "^0.0.12"
"@initia/initia-registry-types": "^0.0.15"
}
}
3 changes: 1 addition & 2 deletions _packages/initia-registry/src/devnet/minimove/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ const info: Chain = {
},
metadata: {
op_bridge_id: "2",
creator: "0x723e7894466de983976cc54302f9c436b3291106",
op_denoms: ["uinit"],
ibc_channels: [
{
Expand All @@ -109,7 +108,7 @@ const info: Chain = {
},
],
assetlist:
"https://raw.githubusercontent.com/initia-labs/initia-registry/mahalo-2/main/devnets/minimove/assetlist.json",
"https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/assetlist.json",
},
};
export default info;
1 change: 0 additions & 1 deletion _packages/initia-registry/src/devnet/miniwasm/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ const info: Chain = {
},
metadata: {
op_bridge_id: "1",
creator: "0xf324bf4f355abec6d49fdfd0d45419ba99d363d9",
op_denoms: ["uinit"],
ibc_channels: [
{
Expand Down
4 changes: 2 additions & 2 deletions _packages/types/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@initia/initia-registry-types",
"version": "0.0.14",
"version": "0.0.15",
"description": "The package provides TypeScript type definitions and Zod integration for initia-registry.",
"types": "./dist/types/index.d.ts",
"exports": {
Expand Down
4 changes: 0 additions & 4 deletions _packages/types/src/types/Chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,6 @@ export interface Chain {
* [Optional] The identifier of the OPinit bridge used to transfer assets between L1 and L2.
*/
op_bridge_id?: string;
/**
* [Optional] The creator of the OPinit bridge.
*/
creator?: string;
/**
* [Optional] The list of denoms that are supported by the OPinit bridge.
*/
Expand Down
4 changes: 0 additions & 4 deletions _packages/types/src/zods/Chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,10 +445,6 @@ export const ChainSchema = z
"[Optional] The identifier of the OPinit bridge used to transfer assets between L1 and L2."
)
.optional(),
creator: z
.string()
.describe("[Optional] The creator of the OPinit bridge.")
.optional(),
op_denoms: z
.array(z.string())
.describe(
Expand Down
4 changes: 0 additions & 4 deletions chain.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -607,10 +607,6 @@
"type": "string",
"description": "[Optional] The identifier of the OPinit bridge used to transfer assets between L1 and L2."
},
"creator": {
"type": "string",
"description": "[Optional] The creator of the OPinit bridge."
},
"op_denoms": {
"type": "array",
"items": {
Expand Down
1 change: 0 additions & 1 deletion devnets/minimove/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
},
"metadata": {
"op_bridge_id": "2",
"creator": "0x723e7894466de983976cc54302f9c436b3291106",
"op_denoms": ["uinit"],
"ibc_channels": [
{
Expand Down
1 change: 0 additions & 1 deletion devnets/miniwasm/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
},
"metadata": {
"op_bridge_id": "1",
"creator": "0xf324bf4f355abec6d49fdfd0d45419ba99d363d9",
"op_denoms": ["uinit"],
"ibc_channels": [
{
Expand Down
Loading