예제 #1
0
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = 'Tyler Adams'
    meta.email = '*****@*****.**'
    meta.description = 'This smart contract implements a pointer-based database on top of the key-value storage ' \
                       'layer to enable advanced storage features.'
    return meta
예제 #2
0
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = "hal0x2328"
    meta.name = "Crypsydra"
    meta.description = "Streaming payments"
    meta.email = ""
    return meta
예제 #3
0
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = 'The Four Blessings of the Apocalypse (COZ)'
    meta.email = '*****@*****.**'
    meta.description = ''
    meta.version = "v0.0.1"
    return meta
예제 #4
0
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = 'The Four Blessings of the Apocalypse (COZ)'
    meta.email = '*****@*****.**'
    meta.description = 'This smart contract represents one of the core resources for the game, stone.'
    meta.version = "v0.0.1"
    return meta
예제 #5
0
def manifest() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = 'Neo'
    meta.email = '*****@*****.**'
    meta.description = 'This is a contract example'
    meta.has_storage = True
    return meta
예제 #6
0
def manifest() -> NeoMetadata:
    meta = NeoMetadata()

    meta.author = "COZ in partnership with Simpli"
    meta.email = "*****@*****.**"
    meta.description = 'This is a contract example'
    return meta
예제 #7
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "Another smart contract that will help during test"
    meta.email = "*****@*****.**"
    return meta
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "Wrapped NEO Example"
    meta.email = "*****@*****.**"
    return meta
예제 #9
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information.
    """
    meta = NeoMetadata()

    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "Update Contract Example. This contract represents the first smart contract deployed on the" \
                       "blockchain, with a buggy method."
    meta.email = "*****@*****.**"
    return meta
예제 #10
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information.
    """
    meta = NeoMetadata()

    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "Update Contract Example. This contract represents the updated smart contract to be deployed " \
                       "on the blockchain, with the method now working properly"
    meta.email = "*****@*****.**"
    return meta
예제 #11
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.supported_standards = ['NEP-5']

    meta.author = "Mirella Medeiros and Ricardo Prado. COZ in partnership with Simpli"
    meta.description = "NEP-5 Example"
    meta.email = "*****@*****.**"
    return meta
예제 #12
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.author = "Mathias Enzensberger, Vincent Geneste"
    meta.description = "GhostMarket NFT"
    meta.email = "*****@*****.**"
    # meta.supportedstandards = "NEP-11" # TODO: NOT SUPPORTED YET
    # meta.permissions = [{"contract": "*","methods": "*"}] # TODO: NOT SUPPORTED YET
    return meta
예제 #13
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.supported_standards = ['NEP-17']
    meta.add_permission(methods=['onNEP17Payment'])

    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "ICO Example"
    meta.email = "*****@*****.**"
    return meta
예제 #14
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.supported_standards = ['NEP-17']
    meta.add_permission(methods=['onNEP17Payment'])
    # this contract needs to call GAS methods
    meta.add_permission(contract='0xd2a4cff31913016155e38e474a2c06d08be276cf')

    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "Wrapped GAS Example"
    meta.email = "*****@*****.**"
    return meta
예제 #15
0
def manifest_metadata() -> NeoMetadata:
    """
    Defines this smart contract's metadata information
    """
    meta = NeoMetadata()
    meta.supported_standards = ['NEP-17']
    meta.add_permission(methods=['onNEP17Payment'])
    # this contract needs to call NEO methods
    meta.add_permission(contract='0xef4073a0f2b305a38ec4050e4d3d28bc40ea63f5')

    meta.author = "Mirella Medeiros, Ricardo Prado and Lucas Uezu. COZ in partnership with Simpli"
    meta.description = "Wrapped NEO Example"
    meta.email = "*****@*****.**"
    return meta
예제 #16
0
def extras_manifest() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = 'Test'
    meta.email = '*****@*****.**'
    meta.description = 'This is an example'
    return meta
예제 #17
0
def email_manifest() -> NeoMetadata:
    meta = NeoMetadata()
    meta.email = '*****@*****.**'
    return meta
예제 #18
0
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = 'Tyler Adams'
    meta.email = '*****@*****.**'
    meta.description = 'This smart contract implements the DID specification for Vivid identity'
    return meta
예제 #19
0
파일: ruler.py 프로젝트: Hecate2/neo-ruler
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = "github.com/Hecate2"
    meta.description = "Ruler Protocol prototype"
    meta.email = "*****@*****.**"
    return meta
예제 #20
0
def manifest_metadata() -> NeoMetadata:
    meta = NeoMetadata()
    meta.author = "github.com/Hecate2"
    meta.description = "Ruler token prototype; inherited from NEP-17"
    meta.email = "*****@*****.**"
    return meta