diff --git a/crates/iota-core/tests/staged/iota.yaml b/crates/iota-core/tests/staged/iota.yaml index 1d2cd9c0734..c082c67a9b1 100644 --- a/crates/iota-core/tests/staged/iota.yaml +++ b/crates/iota-core/tests/staged/iota.yaml @@ -591,7 +591,6 @@ MoveObject: STRUCT: - type_: TYPENAME: MoveObjectType - - has_public_transfer: BOOL - version: TYPENAME: SequenceNumber - contents: BYTES diff --git a/crates/iota-open-rpc/spec/openrpc.json b/crates/iota-open-rpc/spec/openrpc.json index 009cc089d26..b21b620ee3c 100644 --- a/crates/iota-open-rpc/spec/openrpc.json +++ b/crates/iota-open-rpc/spec/openrpc.json @@ -1242,7 +1242,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "100000000", "id": { @@ -2397,7 +2396,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "100000000", "id": { @@ -2421,7 +2419,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "100000000", "id": { @@ -2445,7 +2442,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "100000000", "id": { @@ -2469,7 +2465,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "100000000", "id": { @@ -2493,7 +2488,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "100000000", "id": { @@ -3009,7 +3003,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "10000", "id": { @@ -3109,7 +3102,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "10000", "id": { @@ -3134,7 +3126,6 @@ "content": { "dataType": "moveObject", "type": "0x2::coin::Coin<0x2::iota::IOTA>", - "hasPublicTransfer": true, "fields": { "balance": "20000", "id": { @@ -3697,7 +3688,6 @@ "content": { "dataType": "moveObject", "type": "0x0000000000000000000000000000000000000000000000000000000000000009::test::TestField", - "hasPublicTransfer": true, "fields": {} } } @@ -6143,7 +6133,6 @@ "required": [ "dataType", "fields", - "hasPublicTransfer", "type" ], "properties": { @@ -6156,9 +6145,6 @@ "fields": { "$ref": "#/components/schemas/MoveStruct" }, - "hasPublicTransfer": { - "type": "boolean" - }, "type": { "type": "string" } @@ -10654,7 +10640,6 @@ "required": [ "bcsBytes", "dataType", - "hasPublicTransfer", "type", "version" ], @@ -10668,9 +10653,6 @@ "moveObject" ] }, - "hasPublicTransfer": { - "type": "boolean" - }, "type": { "type": "string" }, diff --git a/crates/iota-rest-api/openapi/openapi.json b/crates/iota-rest-api/openapi/openapi.json index 0a59da60bdf..476e603ee11 100644 --- a/crates/iota-rest-api/openapi/openapi.json +++ b/crates/iota-rest-api/openapi/openapi.json @@ -3047,17 +3047,13 @@ "MoveStruct": { "type": "object", "required": [ - "contents", - "has_public_transfer" + "contents" ], "properties": { "contents": { "description": "Base64 encoded data", "type": "string", "format": "base64" - }, - "has_public_transfer": { - "type": "boolean" } } },